simplify getseed: do not return hex
authorThomasV <thomasv@gitorious>
Wed, 23 Apr 2014 14:14:31 +0000 (16:14 +0200)
committerThomasV <thomasv@gitorious>
Wed, 23 Apr 2014 14:14:31 +0000 (16:14 +0200)
lib/commands.py

index 7a86123..cf07b8f 100644 (file)
@@ -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: