Skip to content

Commit

Permalink
Remove excess 0x in cli wallet log (#11943)
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaki authored Feb 12, 2025
1 parent 3980f6c commit 0599748
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yarn-project/cli-wallet/src/cmds/create_account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function createAccount(
} else {
log(`\nNew account:\n`);
log(`Address: ${address.toString()}`);
log(`Public key: 0x${publicKeys.toString()}`);
log(`Public key: ${publicKeys.toString()}`);
if (secretKey) {
log(`Secret key: ${secretKey.toString()}`);
}
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/cli-wallet/src/cmds/deploy_account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function deployAccount(
} else {
log(`\nNew account:\n`);
log(`Address: ${address.toString()}`);
log(`Public key: 0x${publicKeys.toString()}`);
log(`Public key: ${publicKeys.toString()}`);
if (secretKey) {
log(`Secret key: ${secretKey.toString()}`);
}
Expand Down

0 comments on commit 0599748

Please sign in to comment.