Deserialize from hex string to a transaction object
(hex_string)
| 204 | |
| 205 | |
| 206 | def tx_from_hex(hex_string): |
| 207 | """Deserialize from hex string to a transaction object""" |
| 208 | return from_hex(CTransaction(), hex_string) |
| 209 | |
| 210 | |
| 211 | # Objects that map to bitcoind objects, which can be serialized/deserialized |