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.
2 parents 61cefde + 787296e commit be175ceCopy full SHA for be175ce
src/test/fuzz/banman.cpp
@@ -109,8 +109,9 @@ FUZZ_TARGET_INIT(banman, initialize_banman)
109
BanMan ban_man_read{banlist_file, /* client_interface */ nullptr, /* default_ban_time */ 0};
110
banmap_t banmap_read;
111
ban_man_read.GetBanned(banmap_read);
112
- // Temporarily disabled to allow the remainder of the fuzz test to run while a fix is being worked on:
113
- // assert(banmap == banmap_read);
+ // Assert temporarily disabled to allow the remainder of the fuzz test to run while a
+ // fix is being worked on. See https://github.com/bitcoin/bitcoin/pull/22517
114
+ (void)(banmap == banmap_read);
115
}
116
117
fs::remove(banlist_file.string() + ".dat");
0 commit comments