We always set channel_reserve_satoshis to 1%, rounded down. */
| 172 | |
| 173 | /* We always set channel_reserve_satoshis to 1%, rounded down. */ |
| 174 | static void set_reserve(struct state *state, const struct amount_sat dust_limit) |
| 175 | { |
| 176 | set_reserve_absolute(state, dust_limit, |
| 177 | amount_sat_div(state->funding_sats, 100)); |
| 178 | } |
| 179 | |
| 180 | /*~ Handle random messages we might get during opening negotiation, (eg. gossip) |
| 181 | * returning the first non-handled one, or NULL if we aborted negotiation. */ |
no test coverage detected