From 9c3d8465733ae83fb6c2453b9bb996b37687183b Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 19 Dec 2019 09:00:37 -0500 Subject: [PATCH] Fix rpc c++ tests --- src/test/rpc_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 7cb1ef010..d0e94ab5d 100644 --- a/src/test/rpc_tests.cpp +++ b/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) {