From f5cfa28710ccb661b61d80f40d94ad8ba6d25b9b Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 11 Jun 2016 13:54:05 +0200 Subject: [PATCH] don't display generated addresses to stdout --- lib/account.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/account.py b/lib/account.py index 4727682a6..0afab73ec 100644 --- 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):