| 134 | } |
| 135 | |
| 136 | static bool fulfill_htlc(struct channel *channel, enum side original_sender, |
| 137 | u64 id, const struct preimage *preimage) |
| 138 | { |
| 139 | if (channel_fulfill_htlc(channel, original_sender, id, preimage, NULL) |
| 140 | != CHANNEL_ERR_REMOVE_OK) |
| 141 | return false; |
| 142 | return true; |
| 143 | } |
| 144 | |
| 145 | static bool fail_htlc(struct channel *channel, enum side original_sender, u64 id) |
| 146 | { |
no test coverage detected