mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 16:01:30 +00:00
don't display generated addresses to stdout
This commit is contained in:
parent
f1d3be11bb
commit
f5cfa28710
1 changed files with 1 additions and 2 deletions
|
@ -27,7 +27,7 @@ import bitcoin
|
||||||
from bitcoin import *
|
from bitcoin import *
|
||||||
from i18n import _
|
from i18n import _
|
||||||
from transaction import Transaction, is_extended_pubkey
|
from transaction import Transaction, is_extended_pubkey
|
||||||
from util import print_msg, InvalidPassword
|
from util import InvalidPassword
|
||||||
|
|
||||||
|
|
||||||
class Account(object):
|
class Account(object):
|
||||||
|
@ -67,7 +67,6 @@ class Account(object):
|
||||||
address = self.pubkeys_to_address(pubkeys)
|
address = self.pubkeys_to_address(pubkeys)
|
||||||
pubkeys_list.append(pubkeys)
|
pubkeys_list.append(pubkeys)
|
||||||
addr_list.append(address)
|
addr_list.append(address)
|
||||||
print_msg(address)
|
|
||||||
return address
|
return address
|
||||||
|
|
||||||
def pubkeys_to_address(self, pubkey):
|
def pubkeys_to_address(self, pubkey):
|
||||||
|
|
Loading…
Add table
Reference in a new issue