diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-12-04 19:41:50 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-12-15 01:32:18 +0000 |
commit | f3c0d4f9dfef7947b7f90b197d44c4d0a5125795 (patch) | |
tree | 41607aa6015d9ecb882d9c5a08000fb695f27876 | |
parent | p2p: ifx getting seed nodes for uncommon cases (diff) | |
download | monero-f3c0d4f9dfef7947b7f90b197d44c4d0a5125795.tar.xz |
protocol: remove unused (and cunningly uninitialized) field
-rw-r--r-- | src/cryptonote_protocol/levin_notify.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cryptonote_protocol/levin_notify.cpp b/src/cryptonote_protocol/levin_notify.cpp index 2d04dffb6..69df22a92 100644 --- a/src/cryptonote_protocol/levin_notify.cpp +++ b/src/cryptonote_protocol/levin_notify.cpp @@ -286,7 +286,6 @@ namespace levin connection_count(0), flush_callbacks(0), nzone(zone), - is_public(is_public), pad_txs(pad_txs), fluffing(false) { @@ -304,7 +303,6 @@ namespace levin std::atomic<std::size_t> connection_count; //!< Only update in strand, can be read at any time std::uint32_t flush_callbacks; //!< Number of active fluff flush callbacks queued const epee::net_utils::zone nzone; //!< Zone is public ipv4/ipv6 connections, or i2p or tor - const bool is_public; //!< Zone is public ipv4/ipv6 connections const bool pad_txs; //!< Pad txs to the next boundary for privacy bool fluffing; //!< Zone is in Dandelion++ fluff epoch }; |