tminor fix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 1db4ef8b5c3be83a9706fce22436372612068436 DIR parent 63f05dbef45ac3166325a45c9ebded946681760a HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 6 Mar 2015 11:13:28 +0100 minor fix Diffstat: M plugins/labels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/plugins/labels.py b/plugins/labels.py t@@ -63,7 +63,7 @@ class Plugin(BasePlugin): @hook def load_wallet(self, wallet): self.wallet = wallet - mpk = ''.join(sorted(self.wallet.master_public_keys.values())) + mpk = ''.join(sorted(self.wallet.get_master_public_keys().values())) self.encode_password = hashlib.sha1(mpk).digest().encode('hex')[:32] self.iv = hashlib.sha256(self.encode_password).digest()[:16] self.wallet_id = hashlib.sha256(mpk).digest().encode('hex')