Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
oXtxNt9U committed Dec 3, 2024
1 parent ee2a753 commit 92ccc47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/snapshot-legacy/source/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export interface LegacySnapshot {
}

export interface LegacyWallet {
readonly address: string;
readonly publicKey: string;
readonly balance: string;
readonly address: string; // base58
readonly publicKey?: string;
readonly balance: string; // ARK - 8 decimals
readonly nonce: string;
readonly attributes: Record<string, string>;
}
4 changes: 2 additions & 2 deletions packages/snapshot-legacy/source/snapshot/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ export class Generator {
delete wallet.attributes["htlc"]; // ?
delete wallet.attributes["entities"]; // ?

// secondPublicKey
// multiSignature
// TODO: secondPublicKey
// TODO: multiSignature

hash.update(JSON.stringify(wallet));
wallets.push(wallet);
Expand Down

0 comments on commit 92ccc47

Please sign in to comment.