From 0542619d93811fdb73508abb5299b8fd77f47a0e Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Wed, 12 Feb 2014 16:23:06 -0800 Subject: Rename IsConfirmed to IsTrusted to better match the intended behavior. This doesn't change the functionality at all. --- src/qt/transactionrecord.cpp | 2 +- src/rpcwallet.cpp | 2 +- src/wallet.cpp | 8 ++++---- src/wallet.h | 2 +- 4 files changed, 7 insertions(+), 7 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(); diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp index 7045225825..7cdcaec77b 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -621,7 +621,7 @@ Value getbalance(const Array& params, bool fHelp) for (map::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) { const CWalletTx& wtx = (*it).second; - if (!wtx.IsConfirmed()) + if (!wtx.IsTrusted()) continue; int64_t allFee; diff --git a/src/wallet.cpp b/src/wallet.cpp index 0e51ebb448..e3c460ff33 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -964,7 +964,7 @@ int64_t CWallet::GetBalance() const for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; - if (pcoin->IsConfirmed()) + if (pcoin->IsTrusted()) nTotal += pcoin->GetAvailableCredit(); } } @@ -980,7 +980,7 @@ int64_t CWallet::GetUnconfirmedBalance() const for (map::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx* pcoin = &(*it).second; - if (!IsFinalTx(*pcoin) || !pcoin->IsConfirmed()) + if (!IsFinalTx(*pcoin) || !pcoin->IsTrusted()) nTotal += pcoin->GetAvailableCredit(); } } @@ -1015,7 +1015,7 @@ void CWallet::AvailableCoins(vector& vCoins, bool fOnlyConfirmed, const if (!IsFinalTx(*pcoin)) continue; - if (fOnlyConfirmed && !pcoin->IsConfirmed()) + if (fOnlyConfirmed && !pcoin->IsTrusted()) continue; if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0) @@ -1710,7 +1710,7 @@ std::map CWallet::GetAddressBalances() { CWalletTx *pcoin = &walletEntry.second; - if (!IsFinalTx(*pcoin) || !pcoin->IsConfirmed()) + if (!IsFinalTx(*pcoin) || !pcoin->IsTrusted()) continue; if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0) diff --git a/src/wallet.h b/src/wallet.h index 1bf9bb185c..835137938b 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -695,7 +695,7 @@ public: return (GetDebit() > 0); } - bool IsConfirmed() const + bool IsTrusted() const { // Quick answer in most cases if (!IsFinalTx(*this)) -- cgit v1.2.3