electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 7bef756813afc5dc29de2487799ed7916d8b9580
parent 26c65dd65f7130ac030163b8a666f2b642cc0bbe
Author: ThomasV <thomasv@gitorious>
Date:   Wed, 23 Apr 2014 16:14:31 +0200

simplify getseed: do not return hex

Diffstat:
Mlib/commands.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lib/commands.py b/lib/commands.py @@ -251,8 +251,7 @@ class Commands: def getseed(self): mnemonic = self.wallet.get_mnemonic(self.password) - seed = self.wallet.get_seed(self.password) - return { 'mnemonic':mnemonic, 'seed':seed, 'version':self.wallet.seed_version } + return { 'mnemonic':mnemonic, 'version':self.wallet.seed_version } def importprivkey(self, sec): try: