Skip to content

Commit

Permalink
show public key on creation
Browse files Browse the repository at this point in the history
  • Loading branch information
billbsing committed Jul 23, 2021
1 parent 75020d1 commit c00d1dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions convex_api/tool/command/account_create_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def execute(self, args, output):
values = {
'password': password,
'address': account.address,
'public_key': key_pair.public_key,
'keyfile': key_pair.export_to_text(password),
'keywords': key_pair.export_to_mnemonic,
'balance': convex.get_balance(account)
Expand Down
1 change: 1 addition & 0 deletions convex_api/tool/command/peer_create_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def execute(self, args, output):
values = {
'password': password,
'address': account.address,
'public_key': key_pair.public_key,
'keyfile': key_pair.export_to_text(password),
'keywords': key_pair.export_to_mnemonic,
'balance': convex.get_balance(account),
Expand Down

0 comments on commit c00d1dd

Please sign in to comment.