From 7fe2ee121c6612bfee633c5b3cc57cd6cb0fa97f Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 12 Dec 2019 23:09:09 -0500 Subject: [PATCH] compile fix --- src/komodo_nSPV_fullnode.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/komodo_nSPV_fullnode.h b/src/komodo_nSPV_fullnode.h index 7419248c2..90ec9027c 100644 --- a/src/komodo_nSPV_fullnode.h +++ b/src/komodo_nSPV_fullnode.h @@ -681,8 +681,7 @@ int32_t NSPV_remoterpc(struct NSPV_remoterpcresp *ptr,char *json,int n) if (!mypk.IsValid()) throw JSONRPCError(RPC_PARSE_ERROR, "Not valid pubkey passed in remote rpc call"); } - //TODO: if ((result = cmd->actor(jreq.params,false,mypk)).isObject() || result.isArray()) - if ((result = cmd->actor(jreq.params,false)).isObject() || result.isArray()) + if ((result = cmd->actor(jreq.params,false,mypk)).isObject() || result.isArray()) { rpc_result = JSONRPCReplyObj(result, NullUniValue, jreq.id); response=rpc_result.write();