| 1943 | } |
| 1944 | |
| 1945 | static void adjust_channel_feerate_bounds(struct channel *channel, u32 feerate) |
| 1946 | { |
| 1947 | if (feerate > channel->max_possible_feerate) |
| 1948 | channel->max_possible_feerate = feerate; |
| 1949 | if (feerate < channel->min_possible_feerate) |
| 1950 | channel->min_possible_feerate = feerate; |
| 1951 | } |
| 1952 | |
| 1953 | void peer_sending_commitsig(struct channel *channel, const u8 *msg) |
| 1954 | { |
no outgoing calls
no test coverage detected