Example #1
0
 def from_tx_data(cls, model, tx_data):
     pycoin_tx = pycoin_txcons.deserialize(tx_data)
     composed_tx_spec = pycoin_txcons.reconstruct_composed_tx_spec(
         model, pycoin_tx)
     return cls(model, pycoin_tx, composed_tx_spec)
Example #2
0
 def from_tx_data(cls, model, tx_data):
     pycoin_tx = pycoin_txcons.deserialize(tx_data)
     return cls(model, pycoin_tx)
Example #3
0
 def from_tx_data(cls, model, tx_data):
     pycoin_tx = pycoin_txcons.deserialize(tx_data)
     composed_tx_spec = pycoin_txcons.reconstruct_composed_tx_spec(
         model, pycoin_tx)
     return cls(model, pycoin_tx, composed_tx_spec)
Example #4
0
 def from_tx_data(cls, model, tx_data):
     pycoin_tx = pycoin_txcons.deserialize(tx_data)
     composed_tx_spec = txspec.ComposedTxSpec.from_pycoin_tx(model.ccc, pycoin_tx)
     return cls.from_composed_tx_spec(model, composed_tx_spec)