We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03826ae commit fabed98Copy full SHA for fabed98
src/test/fuzz/banman.cpp
@@ -108,9 +108,7 @@ FUZZ_TARGET_INIT(banman, initialize_banman)
108
BanMan ban_man_read{banlist_file, /* client_interface */ nullptr, /* default_ban_time */ 0};
109
banmap_t banmap_read;
110
ban_man_read.GetBanned(banmap_read);
111
- // Assert temporarily disabled to allow the remainder of the fuzz test to run while a
112
- // fix is being worked on. See https://github.com/bitcoin/bitcoin/pull/22517
113
- (void)(banmap == banmap_read);
+ assert(banmap == banmap_read);
114
}
115
116
fs::remove(banlist_file.string() + ".json");
0 commit comments