You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if msg.funding_satoshis >= config.peer_channel_config_limits.max_funding_satoshis{
1086
+
if msg.funding_satoshis > config.peer_channel_config_limits.max_funding_satoshis{
1087
1087
returnErr(ChannelError::Close(format!("Per our config, funding must be at most {}. It was {}", config.peer_channel_config_limits.max_funding_satoshis, msg.funding_satoshis)));
1088
1088
}
1089
1089
if msg.funding_satoshis >= TOTAL_BITCOIN_SUPPLY_SATOSHIS{
0 commit comments