0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

Merge #9164: [trivial] credit values are CAmount

20c3215 credit values are CAmount (Gregory Sanders)
This commit is contained in:
Pieter Wuille 2016-11-15 09:43:57 -08:00
commit 6eeac6e30d
No known key found for this signature in database
GPG key ID: DBA1A67379A1A931

View file

@ -1608,7 +1608,7 @@ CAmount CWalletTx::GetCredit(const isminefilter& filter) const
if (IsCoinBase() && GetBlocksToMaturity() > 0)
return 0;
int64_t credit = 0;
CAmount credit = 0;
if (filter & ISMINE_SPENDABLE)
{
// GetBalance can assume transactions in mapWallet won't change