From: Matt Corallo Date: Thu, 28 Oct 2021 18:26:04 +0000 (+0000) Subject: f tweak const names somewhat X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=f5b929834a996eac8b9138687be2283466b80655;p=rust-lightning f tweak const names somewhat --- diff --git a/lightning/src/ln/peer_handler.rs b/lightning/src/ln/peer_handler.rs index 5150365b5..38308bb8c 100644 --- a/lightning/src/ln/peer_handler.rs +++ b/lightning/src/ln/peer_handler.rs @@ -286,8 +286,8 @@ enum InitSyncTracker{ } /// The ratio between buffer sizes at which we stop sending initial sync messages vs when we stop -/// forwarding messages to peers altogether. -const FORWARD_INIT_SYNC_BUFFER_SIZE_LIMIT: usize = 2; +/// forwarding gossip messages to peers altogether. +const FORWARD_INIT_SYNC_BUFFER_LIMIT_RATIO: usize = 2; /// When the outbound buffer has this many messages, we'll stop reading bytes from the peer until /// we have fewer than this many messages in the outbound buffer again. @@ -296,7 +296,7 @@ const FORWARD_INIT_SYNC_BUFFER_SIZE_LIMIT: usize = 2; const OUTBOUND_BUFFER_LIMIT_READ_PAUSE: usize = 10; /// When the outbound buffer has this many messages, we'll simply skip relaying gossip messages to /// the peer. -const OUTBOUND_BUFFER_LIMIT_DROP_GOSSIP: usize = OUTBOUND_BUFFER_LIMIT_READ_PAUSE * FORWARD_INIT_SYNC_BUFFER_SIZE_LIMIT; +const OUTBOUND_BUFFER_LIMIT_DROP_GOSSIP: usize = OUTBOUND_BUFFER_LIMIT_READ_PAUSE * FORWARD_INIT_SYNC_BUFFER_LIMIT_RATIO; struct Peer { channel_encryptor: PeerChannelEncryptor,