From b41210a7d9c6cdf500f7293ef27ae862d14d73db Mon Sep 17 00:00:00 2001 From: Rahul Patni Date: Tue, 3 Dec 2024 15:58:42 -0800 Subject: [PATCH] adding missing json encoder for flag --- ironfish/src/wallet/exporter/encoders/json.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ironfish/src/wallet/exporter/encoders/json.ts b/ironfish/src/wallet/exporter/encoders/json.ts index 29fc0496ae..04e83c1495 100644 --- a/ironfish/src/wallet/exporter/encoders/json.ts +++ b/ironfish/src/wallet/exporter/encoders/json.ts @@ -120,6 +120,7 @@ const serializeAccountEncodedJSON = (accountImport: AccountImport): AccountEncod spendingKey: accountImport.spendingKey, multisigKeys: accountImport.multisigKeys, proofAuthorizingKey: accountImport.proofAuthorizingKey, + isLedger: accountImport.isLedger, createdAt: createdAt, } }