You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
439 B
11 lines
439 B
from trezorlib.client import proto, BaseClient, ProtocolMixin |
|
from clientbase import TrezorClientBase |
|
|
|
class TrezorClient(TrezorClientBase, ProtocolMixin, BaseClient): |
|
def __init__(self, transport, handler, plugin, hid_id): |
|
TrezorClientBase.__init__(self, handler, plugin, hid_id, proto) |
|
BaseClient.__init__(self, transport) |
|
ProtocolMixin.__init__(self, transport) |
|
|
|
|
|
TrezorClientBase.wrap_methods(TrezorClient)
|
|
|