FIXME: remove */
| 393 | |
| 394 | /* FIXME: remove */ |
| 395 | void wally_tx_input_get_txid(const struct wally_tx_input *in, |
| 396 | struct bitcoin_txid *txid) |
| 397 | { |
| 398 | BUILD_ASSERT(sizeof(struct bitcoin_txid) == sizeof(in->txhash)); |
| 399 | memcpy(txid, in->txhash, sizeof(struct bitcoin_txid)); |
| 400 | } |
| 401 | |
| 402 | void wally_tx_input_get_outpoint(const struct wally_tx_input *in, |
| 403 | struct bitcoin_outpoint *outpoint) |
no outgoing calls
no test coverage detected