MCPcopy Create free account
hub / github.com/ElementsProject/lightning / adjust_channel_feerate_bounds

Function adjust_channel_feerate_bounds

lightningd/peer_htlcs.c:1945–1951  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1943}
1944
1945static 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
1953void peer_sending_commitsig(struct channel *channel, const u8 *msg)
1954{

Callers 2

peer_sending_commitsigFunction · 0.85
peer_got_commitsigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected