| 706 | REGISTER_TYPE_TO_STRING(wally_tx, fmt_wally_tx); |
| 707 | |
| 708 | void fromwire_bitcoin_txid(const u8 **cursor, size_t *max, |
| 709 | struct bitcoin_txid *txid) |
| 710 | { |
| 711 | fromwire_sha256_double(cursor, max, &txid->shad); |
| 712 | } |
| 713 | |
| 714 | struct bitcoin_tx *fromwire_bitcoin_tx(const tal_t *ctx, |
| 715 | const u8 **cursor, size_t *max) |
no test coverage detected