simplify getseed: do not return hex

This commit is contained in:
ThomasV 2014-04-23 16:14:31 +02:00
parent 26c65dd65f
commit 7bef756813
1 changed files with 1 additions and 2 deletions

View 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: