tsimplify getseed: do not return hex - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 7bef756813afc5dc29de2487799ed7916d8b9580
DIR parent 26c65dd65f7130ac030163b8a666f2b642cc0bbe
HTML Author: ThomasV <thomasv@gitorious>
Date: Wed, 23 Apr 2014 16:14:31 +0200
simplify getseed: do not return hex
Diffstat:
M lib/commands.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
DIR diff --git a/lib/commands.py b/lib/commands.py
t@@ -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: