From d488e75ea892b7bd687c294e314a320760cfae21 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Tue, 19 Jan 2016 16:29:44 -0700 Subject: [PATCH] Fix comment. --- src/primitives/transaction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primitives/transaction.cpp b/src/primitives/transaction.cpp index 0feceaa1a..0c2522037 100644 --- a/src/primitives/transaction.cpp +++ b/src/primitives/transaction.cpp @@ -195,7 +195,7 @@ CAmount CTransaction::GetPourValueIn() const CAmount nValue = 0; for (std::vector::const_iterator it(vpour.begin()); it != vpour.end(); ++it) { - // NB: vpub_old "gives" money to the value pool just as inputs do + // NB: vpub_new "gives" money to the value pool just as inputs do nValue += it->vpub_new; if (!MoneyRange(it->vpub_new) || !MoneyRange(nValue))