diff options
author | dergoegge <n.goeggi@gmail.com> | 2022-05-26 15:40:21 +0200 |
---|---|---|
committer | dergoegge <n.goeggi@gmail.com> | 2022-07-04 14:57:49 +0200 |
commit | 42aa5d5b6269d27af525d5001907558442e96023 (patch) | |
tree | f5c3e6df9ff37580f9b727caa7c106ff2c1667d6 /src/test/fuzz/node_eviction.cpp | |
parent | 55c9e2d790fa2e137ccd0d91e6cf3e2d0bff4813 (diff) |
[net] Add NoBan status to NodeEvictionCandidate
Diffstat (limited to 'src/test/fuzz/node_eviction.cpp')
-rw-r--r-- | src/test/fuzz/node_eviction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/fuzz/node_eviction.cpp b/src/test/fuzz/node_eviction.cpp index 6a363f00f7..d7721f1bf6 100644 --- a/src/test/fuzz/node_eviction.cpp +++ b/src/test/fuzz/node_eviction.cpp @@ -32,6 +32,7 @@ FUZZ_TARGET(node_eviction) /*prefer_evict=*/fuzzed_data_provider.ConsumeBool(), /*m_is_local=*/fuzzed_data_provider.ConsumeBool(), /*m_network=*/fuzzed_data_provider.PickValueInArray(ALL_NETWORKS), + /*m_noban=*/fuzzed_data_provider.ConsumeBool(), }); } // Make a copy since eviction_candidates may be in some valid but otherwise |