electrum

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

commit d69318ff148f99c2b77ba8acd17a7988797191cd
parent facf833bac60d00d745c0bafc0ee4a08d2ba1fb9
Author: Roman Zeyde <dev@romanzey.de>
Date:   Wed, 28 Mar 2018 21:00:38 +0300

trezor: pass transport parameter explicitly as a keyword argument (#4194)


Diffstat:
Mplugins/trezor/client.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/trezor/client.py b/plugins/trezor/client.py @@ -3,8 +3,8 @@ from .clientbase import TrezorClientBase class TrezorClient(TrezorClientBase, ProtocolMixin, BaseClient): def __init__(self, transport, handler, plugin): - BaseClient.__init__(self, transport) - ProtocolMixin.__init__(self, transport) + BaseClient.__init__(self, transport=transport) + ProtocolMixin.__init__(self, transport=transport) TrezorClientBase.__init__(self, handler, plugin, proto)