tclient.py - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
tclient.py (437B)
---
1 from safetlib.client import proto, BaseClient, ProtocolMixin
2 from .clientbase import SafeTClientBase
3
4 class SafeTClient(SafeTClientBase, ProtocolMixin, BaseClient):
5 def __init__(self, transport, handler, plugin):
6 BaseClient.__init__(self, transport=transport)
7 ProtocolMixin.__init__(self, transport=transport)
8 SafeTClientBase.__init__(self, handler, plugin, proto)
9
10
11 SafeTClientBase.wrap_methods(SafeTClient)