diff --git a/plugins/trezor/plugin.py b/plugins/trezor/plugin.py index cff18085c..beda3fadd 100644 --- a/plugins/trezor/plugin.py +++ b/plugins/trezor/plugin.py @@ -25,7 +25,7 @@ class TrezorCompatibleKeyStore(Hardware_KeyStore): def load(self, storage, name): self.xpub = storage.get('master_public_keys', {}).get(name) - self.account_id = storage.get('account_id') + self.account_id = int(storage.get('account_id')) def get_derivation(self): return "m/44'/0'/%d'"%self.account_id