Fix rpc c++ tests

This commit is contained in:
Duke Leto
2019-12-19 09:00:37 -05:00
parent 12e7c13a84
commit 9c3d846573

View File

@@ -46,7 +46,7 @@ UniValue CallRPC(string args)
BOOST_CHECK(tableRPC[strMethod]);
rpcfn_type method = tableRPC[strMethod]->actor;
try {
UniValue result = (*method)(params, false);
UniValue result = (*method)(params, false, CPubKey());
return result;
}
catch (const UniValue& objError) {