1
0

simplification (get rid of get_mnemonic)

This commit is contained in:
ThomasV
2016-10-14 12:09:43 +02:00
parent d950cd7323
commit bab15a245b
4 changed files with 9 additions and 15 deletions

View File

@@ -346,7 +346,7 @@ class Commands:
@command('wp')
def getseed(self):
"""Get seed phrase. Print the generation seed of your wallet."""
s = self.wallet.get_mnemonic(self._password)
s = self.wallet.get_seed(self._password)
return s.encode('utf8')
@command('wp')