chainsyncer/chainsyncer/client/tx.py

7 lines
143 B
Python
Raw Normal View History

2021-02-03 23:03:39 +01:00
class Tx:
def __init__(self, block, tx_number, obj):
self.block = block
self.tx_number = tx_number
self.obj = obj