diff options
| author | Gavin Andresen <[email protected]> | 2013-11-11 16:03:51 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-11-30 15:42:10 +1000 |
| commit | 0733c1bde69c6ccfe593d2eec775d0ae32fe7140 (patch) | |
| tree | 05a186706a752322ad057188c5660687162b2246 /src/qt/transactiondesc.cpp | |
| parent | Remove dead transaction replacement code (diff) | |
| download | discoin-0733c1bde69c6ccfe593d2eec775d0ae32fe7140.tar.xz discoin-0733c1bde69c6ccfe593d2eec775d0ae32fe7140.zip | |
Refactor: move GetValueIn(tx) to tx.GetValueIn()
GetValueIn makes more sense as a CTransaction member.
Diffstat (limited to 'src/qt/transactiondesc.cpp')
| -rw-r--r-- | src/qt/transactiondesc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index 8bd2bf564..c0c4d5373 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -194,7 +194,7 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, int vout, int u strHTML += "<b>" + tr("Credit") + ":</b> " + BitcoinUnits::formatWithUnit(unit, nValue) + "<br>"; } - int64_t nTxFee = nDebit - GetValueOut(wtx); + int64_t nTxFee = nDebit - wtx.GetValueOut(); if (nTxFee > 0) strHTML += "<b>" + tr("Transaction fee") + ":</b> " + BitcoinUnits::formatWithUnit(unit, -nTxFee) + "<br>"; } |