mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-13 07:28:59 +01:00
Merge pull request #3662
0542619 Rename IsConfirmed to IsTrusted to better match the intended behavior. (Gregory Maxwell)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user