aboutsummaryrefslogtreecommitdiff
path: root/src/qt/transactionrecord.cpp
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2014-02-12 16:23:06 -0800
committerGregory Maxwell <greg@xiph.org>2014-02-12 16:23:06 -0800
commit0542619d93811fdb73508abb5299b8fd77f47a0e (patch)
treed8e43149a56fad0a7de99cf08fce5d516dcbc30e /src/qt/transactionrecord.cpp
parent19e5b9d2dfcac4efadba636745485d9660fb1abe (diff)
downloadbitcoin-0542619d93811fdb73508abb5299b8fd77f47a0e.tar.xz
Rename IsConfirmed to IsTrusted to better match the intended behavior.
This doesn't change the functionality at all.
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 257151b926..b6614fc371 100644
--- a/src/qt/transactionrecord.cpp
+++ b/src/qt/transactionrecord.cpp
@@ -164,7 +164,7 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx)
(wtx.IsCoinBase() ? 1 : 0),
wtx.nTimeReceived,
idx);
- status.confirmed = wtx.IsConfirmed();
+ status.confirmed = wtx.IsTrusted();
status.depth = wtx.GetDepthInMainChain();
status.cur_num_blocks = chainActive.Height();