mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 20:32:35 -03:00
fuzz: refactor: Replace NullUniValue with UniValue{}
This is needed for the scripted-diff to compile in the next commit
This commit is contained in:
parent
5057adf22f
commit
fa962103e8
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ FUZZ_TARGET_INIT(parse_univalue, initialize_parse_univalue)
|
|||
return ParseNonRFCJSONValue(random_string);
|
||||
} catch (const std::runtime_error&) {
|
||||
valid = false;
|
||||
return NullUniValue;
|
||||
return UniValue{};
|
||||
}
|
||||
}();
|
||||
if (!valid) {
|
||||
|
|
Loading…
Reference in a new issue