commit f5cfa28710ccb661b61d80f40d94ad8ba6d25b9b
parent f1d3be11bb2c5c60d426b3e94d58447b3313ed44
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 11 Jun 2016 13:54:05 +0200
don't display generated addresses to stdout
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/account.py b/lib/account.py
@@ -27,7 +27,7 @@ import bitcoin
from bitcoin import *
from i18n import _
from transaction import Transaction, is_extended_pubkey
-from util import print_msg, InvalidPassword
+from util import InvalidPassword
class Account(object):
@@ -67,7 +67,6 @@ class Account(object):
address = self.pubkeys_to_address(pubkeys)
pubkeys_list.append(pubkeys)
addr_list.append(address)
- print_msg(address)
return address
def pubkeys_to_address(self, pubkey):