Skip to content

Commit

Permalink
Fix 2 instances of mismatched logprint specifiers
Browse files Browse the repository at this point in the history
Github-Merge: PIVX-Project#419
Rebased-From: c191866
  • Loading branch information
Fuzzbawls authored and meyer9 committed Feb 20, 2018
1 parent 48ec765 commit 64c5ec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3772,7 +3772,7 @@ bool CWallet::MultiSend()
CreateTransaction(vecSend, wtxdummy, keyChange, nFeeRet, strErr, cControl, ALL_COINS, false, CAmount(0));
CAmount nLastSendAmount = vecSend[vecSend.size() - 1].second;
if (nLastSendAmount < nFeeRet + 500) {
LogPrintf("%s: fee of %s is too large to insert into last output\n");
LogPrintf("%s: fee of %d is too large to insert into last output\n", __func__, nFeeRet + 500);
return false;
}
vecSend[vecSend.size() - 1].second = nLastSendAmount - nFeeRet - 500;
Expand Down

0 comments on commit 64c5ec1

Please sign in to comment.