mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Merge bitcoin/bitcoin#22657: fuzz: Re-enable assert in banman again
fabed982ad9143cddaca8346f6b4c243dd84e0c4 fuzz: Re-enable assert in banman again (MarcoFalke) Pull request description: Looks like this was accidentally fixed by removing the buggy code in commit efd6f904c78769ad2e93c1f1de43014d284e7561 ACKs for top commit: hebasto: ACK fabed982ad9143cddaca8346f6b4c243dd84e0c4 Tree-SHA512: 2dea5dad48ff2050ae7086c1c6306c40f650e9629918e79adc54164a375d777a70b29f5a480566dc6430f07ce33dfe703fc5d45a20125584b4a026c5832198a2
This commit is contained in:
parent
83e374f081
commit
e40d67a170
@ -107,9 +107,7 @@ FUZZ_TARGET_INIT(banman, initialize_banman)
|
|||||||
BanMan ban_man_read{banlist_file, /* client_interface */ nullptr, /* default_ban_time */ 0};
|
BanMan ban_man_read{banlist_file, /* client_interface */ nullptr, /* default_ban_time */ 0};
|
||||||
banmap_t banmap_read;
|
banmap_t banmap_read;
|
||||||
ban_man_read.GetBanned(banmap_read);
|
ban_man_read.GetBanned(banmap_read);
|
||||||
// Assert temporarily disabled to allow the remainder of the fuzz test to run while a
|
assert(banmap == banmap_read);
|
||||||
// fix is being worked on. See https://github.com/bitcoin/bitcoin/pull/22517
|
|
||||||
(void)(banmap == banmap_read);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fs::remove(banlist_file.string() + ".json");
|
fs::remove(banlist_file.string() + ".json");
|
||||||
|
Loading…
Reference in New Issue
Block a user