From 67bfffd2e119a59c16f8f6b92a8aac486f9525d6 Mon Sep 17 00:00:00 2001 From: Karl-Johan Alm Date: Mon, 24 Jul 2017 15:27:52 +0900 Subject: [PATCH] Compile fix [hot] --- src/rpc/mining.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 06fbde4bfd..cf19271a9c 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -168,7 +168,7 @@ UniValue getnewblockhex(const JSONRPCRequest& request) + HelpExampleCli("getnewblockhex", "") ); - std::unique_ptr pblocktemplate(BlockAssembler(Params()).CreateNewBlock(Params().Consensus().CoinbaseDestination()); + std::unique_ptr pblocktemplate(BlockAssembler(Params()).CreateNewBlock(Params().CoinbaseDestination())); if (!pblocktemplate.get()) throw JSONRPCError(RPC_INTERNAL_ERROR, "Wallet keypool empty"); {