vTxSigOps -> vTxSigOpsCost

This commit is contained in:
lateminer
2018-10-30 00:31:21 +03:00
parent 762df8afbe
commit 76d0663369
3 changed files with 5 additions and 5 deletions

View File

@@ -621,7 +621,7 @@ UniValue getblocktemplate(const UniValue& params, bool fHelp)
int index_in_template = i - 1;
entry.push_back(Pair("fee", pblocktemplate->vTxFees[index_in_template]));
entry.push_back(Pair("sigops", pblocktemplate->vTxSigOps[index_in_template]));
entry.push_back(Pair("sigops", pblocktemplate->vTxSigOpsCost[index_in_template]));
transactions.push_back(entry);
}