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)
def from_tx_data(cls, model, tx_data): pycoin_tx = pycoin_txcons.deserialize(tx_data) return cls(model, pycoin_tx)
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)