From 20c3215a9031b3dbbde641b933246b3e222e4eca Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Tue, 15 Nov 2016 09:19:23 -0500 Subject: [PATCH] credit values are CAmount --- src/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index c2bac6e33..3e18cb702 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -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