Skip to content

Commit c00d1dd

Browse files
committed
show public key on creation
1 parent 75020d1 commit c00d1dd

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

convex_api/tool/command/account_create_command.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ def execute(self, args, output):
6666
values = {
6767
'password': password,
6868
'address': account.address,
69+
'public_key': key_pair.public_key,
6970
'keyfile': key_pair.export_to_text(password),
7071
'keywords': key_pair.export_to_mnemonic,
7172
'balance': convex.get_balance(account)

convex_api/tool/command/peer_create_command.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def execute(self, args, output):
7878
values = {
7979
'password': password,
8080
'address': account.address,
81+
'public_key': key_pair.public_key,
8182
'keyfile': key_pair.export_to_text(password),
8283
'keywords': key_pair.export_to_mnemonic,
8384
'balance': convex.get_balance(account),

0 commit comments

Comments
 (0)