diff options
author | MacroFake <falke.marco@gmail.com> | 2022-07-25 16:52:00 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-07-25 17:27:53 +0200 |
commit | fa28d0f3c3fe528dae7fd6dc7725219b9bdf0e1b (patch) | |
tree | 5fef522815a91c28eec578eeef268cb6b1e8b31c /src/rpc/node.cpp | |
parent | fa962103e8eb0b078b83943a21831be39e7716c9 (diff) |
scripted-diff: Replace NullUniValue with UniValue::VNULL
This is required for removing the UniValue copy constructor.
-BEGIN VERIFY SCRIPT-
sed -i 's/return NullUniValue/return UniValue::VNULL/g' $(git grep -l NullUniValue ':(exclude)src/univalue')
-END VERIFY SCRIPT-
Diffstat (limited to 'src/rpc/node.cpp')
-rw-r--r-- | src/rpc/node.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/node.cpp b/src/rpc/node.cpp index 5475662b82..605ebc15a7 100644 --- a/src/rpc/node.cpp +++ b/src/rpc/node.cpp @@ -65,7 +65,7 @@ static RPCHelpMan setmocktime() } } - return NullUniValue; + return UniValue::VNULL; }, }; } @@ -85,7 +85,7 @@ static RPCHelpMan invokedisallowedsyscall() throw std::runtime_error("invokedisallowedsyscall is used for testing only."); } TestDisallowedSandboxCall(); - return NullUniValue; + return UniValue::VNULL; }, }; } @@ -118,7 +118,7 @@ static RPCHelpMan mockscheduler() CHECK_NONFATAL(node_context->scheduler); node_context->scheduler->MockForward(std::chrono::seconds(delta_seconds)); - return NullUniValue; + return UniValue::VNULL; }, }; } |