diff options
author | Lee *!* Clagett <code@leeclagett.com> | 2024-03-28 19:02:17 -0400 |
---|---|---|
committer | Lee *!* Clagett <code@leeclagett.com> | 2024-03-29 13:01:58 -0400 |
commit | 463228b9614d63afeb948fcb1ab3b27ece2c7347 (patch) | |
tree | d6212f2b21fd513c4bc2bacc55aa98e2cd335990 /src/cryptonote_protocol/levin_notify.h | |
parent | Merge pull request #9243 (diff) | |
download | monero-463228b9614d63afeb948fcb1ab3b27ece2c7347.tar.xz |
Skip privacy networks (on tx sends) that don't have outgoing connections
Diffstat (limited to 'src/cryptonote_protocol/levin_notify.h')
-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. |