Files
purple-electrumwallet/plugins/trezor/client.py
T

12 lines
424 B
Python
Raw Normal View History

2016-01-15 13:44:32 +09:00
from trezorlib.client import proto, BaseClient, ProtocolMixin
2017-03-15 12:13:20 +01:00
from .clientbase import TrezorClientBase
2015-12-26 18:48:07 +09:00
2016-01-15 13:44:32 +09:00
class TrezorClient(TrezorClientBase, ProtocolMixin, BaseClient):
2016-01-20 00:28:54 +09:00
def __init__(self, transport, handler, plugin):
2016-01-15 13:44:32 +09:00
BaseClient.__init__(self, transport)
ProtocolMixin.__init__(self, transport)
2016-01-20 00:28:54 +09:00
TrezorClientBase.__init__(self, handler, plugin, proto)
2015-12-26 18:48:07 +09:00
2015-12-27 15:10:53 +09:00
2016-01-15 13:44:32 +09:00
TrezorClientBase.wrap_methods(TrezorClient)