We only do segwit inputs, and we assume witness is sig + key */
| 879 | |
| 880 | /* We only do segwit inputs, and we assume witness is sig + key */ |
| 881 | size_t bitcoin_tx_simple_input_weight(bool p2sh) |
| 882 | { |
| 883 | return bitcoin_tx_input_weight(p2sh, |
| 884 | bitcoin_tx_simple_input_witness_weight()); |
| 885 | } |
| 886 | |
| 887 | size_t bitcoin_tx_2of2_input_witness_weight(void) |
| 888 | { |
no test coverage detected