Create a fully mutable copy of an existing TxIn
(cls, txin)
| 206 | |
| 207 | @classmethod |
| 208 | def from_txin(cls, txin): |
| 209 | """Create a fully mutable copy of an existing TxIn""" |
| 210 | prevout = CMutableOutPoint.from_outpoint(txin.prevout) |
| 211 | return cls(prevout, txin.scriptSig, txin.nSequence) |
| 212 | |
| 213 | |
| 214 | class CTxOut(ImmutableSerializable): |
nothing calls this directly
no test coverage detected