From 1eecc5e44fde5613a2efc7362901b052063c84d5 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Sat, 7 Oct 2017 00:53:45 -0700 Subject: [PATCH] Remove the calculation of foundersreward, which does not exist in Hush --- src/rpcmining.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index b3760060a..81d2c6ad8 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -677,11 +677,6 @@ UniValue getblocktemplate(const UniValue& params, bool fHelp) entry.push_back(Pair("sigops", pblocktemplate->vTxSigOps[index_in_template])); if (tx.IsCoinBase()) { - // Show founders' reward if it is required - if (pblock->vtx[0].vout.size() > 1) { - // Correct this if GetBlockTemplate changes the order - entry.push_back(Pair("foundersreward", (int64_t)tx.vout[1].nValue)); - } entry.push_back(Pair("required", true)); txCoinbase = entry; } else {