File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed
Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -949,8 +949,6 @@ class CConnman
949949 */
950950 std::chrono::microseconds PoissonNextSendInbound (std::chrono::microseconds now, std::chrono::seconds average_interval);
951951
952- void SetAsmap (std::vector<bool > asmap) { addrman.m_asmap = std::move (asmap); }
953-
954952 /* * Return true if we should disconnect the peer for failing an inactivity check. */
955953 bool ShouldRunInactivityChecks (const CNode& node, std::optional<int64_t > now=std::nullopt ) const ;
956954
Original file line number Diff line number Diff line change @@ -103,12 +103,6 @@ FUZZ_TARGET_INIT(connman, initialize_connman)
103103 [&] {
104104 connman.RemoveAddedNode (random_string);
105105 },
106- [&] {
107- const std::vector<bool > asmap = ConsumeRandomLengthBitVector (fuzzed_data_provider);
108- if (SanityCheckASMap (asmap)) {
109- connman.SetAsmap (asmap);
110- }
111- },
112106 [&] {
113107 connman.SetNetworkActive (fuzzed_data_provider.ConsumeBool ());
114108 },
You can’t perform that action at this time.
0 commit comments