Log when we use fee=0 for small inputs

This commit is contained in:
Duke Leto
2022-08-30 21:05:27 -04:00
parent 702c2163cd
commit b4b6988eb0

View File

@@ -197,9 +197,10 @@ bool AsyncRPCOperation_sweep::main_impl() {
CAmount fee = fSweepTxFee;
if (amountToSend <= fSweepTxFee) {
fee = 0;
LogPrintf("%s: Amount to send %s is <= fee, using fee=0", getId(), FormatMoney(amountToSend));
fee = 0;
}
amountSwept += amountToSend;
auto builder = TransactionBuilder(consensusParams, targetHeight_, pwalletMain);
{
LOCK2(cs_main, pwalletMain->cs_wallet);