| 203 | } |
| 204 | |
| 205 | u8 *htlc_received_wscript(const tal_t *ctx, |
| 206 | const struct ripemd160 *ripemd, |
| 207 | const struct abs_locktime *expiry, |
| 208 | const struct keyset *keyset, |
| 209 | bool option_anchor_outputs, |
| 210 | bool option_anchors_zero_fee_htlc_tx) |
| 211 | { |
| 212 | return bitcoin_wscript_htlc_receive_ripemd(ctx, |
| 213 | expiry, |
| 214 | &keyset->self_htlc_key, |
| 215 | &keyset->other_htlc_key, |
| 216 | ripemd, |
| 217 | &keyset->self_revocation_key, |
| 218 | option_anchor_outputs, |
| 219 | option_anchors_zero_fee_htlc_tx); |
| 220 | } |
no test coverage detected