mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -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);
|
return ParseNonRFCJSONValue(random_string);
|
||||||
} catch (const std::runtime_error&) {
|
} catch (const std::runtime_error&) {
|
||||||
valid = false;
|
valid = false;
|
||||||
return NullUniValue;
|
return UniValue{};
|
||||||
}
|
}
|
||||||
}();
|
}();
|
||||||
if (!valid) {
|
if (!valid) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue