diff options
author | dergoegge <n.goeggi@gmail.com> | 2022-06-22 11:00:49 +0200 |
---|---|---|
committer | dergoegge <n.goeggi@gmail.com> | 2022-06-22 11:03:35 +0200 |
commit | e7a9133766a2dc357a79d38cd47231cc99cdefb7 (patch) | |
tree | cd7f897b4dce60cc058036c4d8f76ceab8eb267a /src | |
parent | b1a824dd06aa58618947783edee2dd891b5204dc (diff) |
[net processing] Set CNode::m_relays_txs=true when receiving BIP37 filters
This line was accidentally removed in #22778.
Diffstat (limited to 'src')
-rw-r--r-- | src/net_processing.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 751a03f01c..cbba1d0aa2 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -4075,6 +4075,7 @@ void PeerManagerImpl::ProcessMessage(CNode& pfrom, const std::string& msg_type, tx_relay->m_relay_txs = true; } pfrom.m_bloom_filter_loaded = true; + pfrom.m_relays_txs = true; } return; } |