Skip to content

Commit 6eeac6e

Browse files
committed
Merge #9164: [trivial] credit values are CAmount
20c3215 credit values are CAmount (Gregory Sanders)
2 parents 018a4eb + 20c3215 commit 6eeac6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/wallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,7 @@ CAmount CWalletTx::GetCredit(const isminefilter& filter) const
16081608
if (IsCoinBase() && GetBlocksToMaturity() > 0)
16091609
return 0;
16101610

1611-
int64_t credit = 0;
1611+
CAmount credit = 0;
16121612
if (filter & ISMINE_SPENDABLE)
16131613
{
16141614
// GetBalance can assume transactions in mapWallet won't change

0 commit comments

Comments
 (0)