| 752 | } |
| 753 | |
| 754 | void fromwire_bitcoin_txid(const u8 **cursor, size_t *max, |
| 755 | struct bitcoin_txid *txid) |
| 756 | { |
| 757 | fromwire_sha256_double(cursor, max, &txid->shad); |
| 758 | } |
| 759 | |
| 760 | struct bitcoin_tx *fromwire_bitcoin_tx(const tal_t *ctx, |
| 761 | const u8 **cursor, size_t *max) |
no test coverage detected