aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-02-13 20:12:34 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-02-13 20:12:46 +0100
commit6056c87d25994bbceb23d6ae50df1276a51d51bd (patch)
treeb96fc427df87c50b6a96d60ecc07743fb8a8112b /src/rpcwallet.cpp
parentc46ad177856a0c4f465c502513e151e5f07bf278 (diff)
parent0542619d93811fdb73508abb5299b8fd77f47a0e (diff)
downloadbitcoin-6056c87d25994bbceb23d6ae50df1276a51d51bd.tar.xz
Merge pull request #3662
0542619 Rename IsConfirmed to IsTrusted to better match the intended behavior. (Gregory Maxwell)
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 51e9aabecc..bcbae06682 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -621,7 +621,7 @@ Value getbalance(const Array& params, bool fHelp)
for (map<uint256, CWalletTx>::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;