File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ static const uint32_t DEFAULT_MAX_ORPHAN_TRANSACTIONS{100};
28
28
/* * Default number of non-mempool transactions to keep around for block reconstruction. Includes
29
29
orphan, replaced, and rejected transactions. */
30
30
static const uint32_t DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN{100 };
31
- static const bool DEFAULT_PEERBLOOMFILTERS = false ;
31
+ static const bool DEFAULT_PEERBLOOMFILTERS = true ;
32
32
static const bool DEFAULT_PEERBLOCKFILTERS = false ;
33
33
/* * Maximum number of outstanding CMPCTBLOCK requests for the same block. */
34
34
static const unsigned int MAX_CMPCTBLOCKS_INFLIGHT_PER_BLOCK = 3 ;
Original file line number Diff line number Diff line change 11
11
from test_framework .messages import (
12
12
CInv ,
13
13
MSG_BLOCK ,
14
+ NODE_BLOOM ,
14
15
NODE_NETWORK_LIMITED ,
15
16
NODE_P2P_V2 ,
16
17
NODE_WITNESS ,
@@ -119,7 +120,7 @@ def test_avoid_requesting_historical_blocks(self):
119
120
def run_test (self ):
120
121
node = self .nodes [0 ].add_p2p_connection (P2PIgnoreInv ())
121
122
122
- expected_services = NODE_WITNESS | NODE_NETWORK_LIMITED | NODE_REPLACE_BY_FEE
123
+ expected_services = NODE_BLOOM | NODE_WITNESS | NODE_NETWORK_LIMITED | NODE_REPLACE_BY_FEE
123
124
if self .options .v2transport :
124
125
expected_services |= NODE_P2P_V2
125
126
You can’t perform that action at this time.
0 commit comments