helper to compare output script with our tal'd script */
| 153 | |
| 154 | /* helper to compare output script with our tal'd script */ |
| 155 | static bool wally_tx_output_scripteq(const struct wally_tx_output *out, |
| 156 | const u8 *script) |
| 157 | { |
| 158 | return memeq(out->script, out->script_len, script, tal_bytelen(script)); |
| 159 | } |
| 160 | |
| 161 | /* The feerate for the HTLC txs (which we grind) are the same as the |
| 162 | * feerate for the main tx. However, there may be dust HTLCs which |
no test coverage detected