Rename IsConfirmed to IsTrusted to better match the intended behavior.

This doesn't change the functionality at all.
This commit is contained in:
Gregory Maxwell
2014-02-12 16:23:06 -08:00
parent 19e5b9d2df
commit 0542619d93
4 changed files with 7 additions and 7 deletions

View File

@@ -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();