Browse Source

Fix rpc c++ tests

sietch
Duke Leto 5 years ago
parent
commit
9c3d846573
  1. 2
      src/test/rpc_tests.cpp

2
src/test/rpc_tests.cpp

@ -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) {

Loading…
Cancel
Save