diff options
author | dergoegge <n.goeggi@gmail.com> | 2022-05-26 15:49:10 +0200 |
---|---|---|
committer | dergoegge <n.goeggi@gmail.com> | 2022-07-04 14:58:43 +0200 |
commit | a3c27070396ab8c2941c437e8099547e8fc9c110 (patch) | |
tree | a2c68e898dff549ae3e53c523eb90a35fdc9e9cd /src/test/fuzz/node_eviction.cpp | |
parent | 42aa5d5b6269d27af525d5001907558442e96023 (diff) |
[net] Add connection type 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 d7721f1bf6..e27b254580 100644 --- a/src/test/fuzz/node_eviction.cpp +++ b/src/test/fuzz/node_eviction.cpp @@ -33,6 +33,7 @@ FUZZ_TARGET(node_eviction) /*m_is_local=*/fuzzed_data_provider.ConsumeBool(), /*m_network=*/fuzzed_data_provider.PickValueInArray(ALL_NETWORKS), /*m_noban=*/fuzzed_data_provider.ConsumeBool(), + /*m_conn_type=*/fuzzed_data_provider.PickValueInArray(ALL_CONNECTION_TYPES), }); } // Make a copy since eviction_candidates may be in some valid but otherwise |