Bugfix: QA/fuzz: Add invokedisallowedsyscall to RPC_COMMANDS_NOT_SAFE_FOR_FUZZING

This commit is contained in:
Luke Dashjr 2023-10-10 00:27:14 +00:00
parent 30308cc380
commit b96fa5fa80

View File

@ -78,6 +78,7 @@ const std::vector<std::string> RPC_COMMANDS_NOT_SAFE_FOR_FUZZING{
"generatetodescriptor", // avoid prohibitively slow execution (when `nblocks` is large)
"gettxoutproof", // avoid prohibitively slow execution
"importwallet", // avoid reading from disk
"invokedisallowedsyscall", // avoid killing fuzzer
"loadwallet", // avoid reading from disk
"prioritisetransaction", // avoid signed integer overflow in CTxMemPool::PrioritiseTransaction(uint256 const&, long const&) (https://github.com/bitcoin/bitcoin/issues/20626)
"savemempool", // disabled as a precautionary measure: may take a file path argument in the future