示例#1
0
 def deserialize(bytes):
     return serialize.deser_tx(bytes)
示例#2
0
文件: client.py 项目: ABISprotocol/sx
 def _on_fetch_transaction(self, data):
     error = unpack_error(data)
     tx = serialize.deser_tx(data[4:])
     return (error, tx)
示例#3
0
文件: client.py 项目: imak81/sx
 def _on_fetch_transaction(self, data):
     error = unpack_error(data)
     tx = serialize.deser_tx(data[4:])
     return (error, tx)