electrum

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

commit b28a0bcdd4d6489001b72c177c6b8204a7d6c9a6
parent a24e32266fe2aa7828900e1e243fc3eb79921731
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 22 Jun 2014 08:06:37 +0200

getmpk: return list of accounts

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

diff --git a/lib/commands.py b/lib/commands.py @@ -250,7 +250,7 @@ class Commands: return electrum.ELECTRUM_VERSION def getmpk(self): - return self.wallet.get_master_public_key() + return self.wallet.get_master_public_keys() def getseed(self): mnemonic = self.wallet.get_mnemonic(self.password)