diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-05-20 23:34:39 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-05-20 23:34:39 -0500 |
commit | 58b1e931f7f5397faaf1a6a448bef40683744949 (patch) | |
tree | edac044c2e37470d3b51287ccf88e60671c6689c /src/cryptonote_protocol/levin_notify.h | |
parent | Merge pull request #9259 (diff) | |
parent | Skip privacy networks (on tx sends) that don't have outgoing connections (diff) | |
download | monero-58b1e931f7f5397faaf1a6a448bef40683744949.tar.xz |
Merge pull request #9268
463228b Skip privacy networks (on tx sends) that don't have outgoing connections (Lee *!* Clagett)
Diffstat (limited to '')
-rw-r--r-- | src/cryptonote_protocol/levin_notify.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/levin_notify.h b/src/cryptonote_protocol/levin_notify.h index 52d36efb0..816170841 100644 --- a/src/cryptonote_protocol/levin_notify.h +++ b/src/cryptonote_protocol/levin_notify.h @@ -75,7 +75,8 @@ namespace levin struct status { bool has_noise; - bool connections_filled; + bool connections_filled; //!< True when has zone has `CRYPTONOTE_NOISE_CHANNELS` outgoing noise channels + bool has_outgoing; //!< True when zone has outgoing connections }; //! Construct an instance that cannot notify. |