aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactionrecord.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-06-01 11:30:20 +0200
committerWladimir J. van der Laan <[email protected]>2015-06-01 11:33:33 +0200
commit87550eefc1131132e940efcaf296bb399eeb02df (patch)
tree29feaceee6f4f0aa73bf2dba0ab8698e73a6aced /src/qt/transactionrecord.cpp
parentMerge pull request #6164 (diff)
parentFix off-by-one error w/ nLockTime in the wallet (diff)
downloaddiscoin-87550eefc1131132e940efcaf296bb399eeb02df.tar.xz
discoin-87550eefc1131132e940efcaf296bb399eeb02df.zip
Merge pull request #6183
28bf062 Fix off-by-one error w/ nLockTime in the wallet (Peter Todd)
Diffstat (limited to 'src/qt/transactionrecord.cpp')
-rw-r--r--src/qt/transactionrecord.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp
index 7f1db58e5..15d13e9fc 100644
--- a/src/qt/transactionrecord.cpp
+++ b/src/qt/transactionrecord.cpp
@@ -188,7 +188,7 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx)
status.depth = wtx.GetDepthInMainChain();
status.cur_num_blocks = chainActive.Height();
- if (!IsFinalTx(wtx, chainActive.Height() + 1))
+ if (!CheckFinalTx(wtx))
{
if (wtx.nLockTime < LOCKTIME_THRESHOLD)
{