| 1227 | } |
| 1228 | |
| 1229 | static bool is_valid_sig(const u8 *e) |
| 1230 | { |
| 1231 | struct bitcoin_signature sig; |
| 1232 | return signature_from_der(e, tal_count(e), &sig); |
| 1233 | } |
| 1234 | |
| 1235 | /* We ignore things which look like signatures. */ |
| 1236 | static bool input_similar(const struct wally_tx_input *i1, |
no test coverage detected