|
|
|
@ -400,7 +400,6 @@ void CoinControlDialog::updateLabels(CCoinControl& m_coin_control, WalletModel *
|
|
|
|
|
// nPayAmount
|
|
|
|
|
CAmount nPayAmount = 0;
|
|
|
|
|
bool fDust = false;
|
|
|
|
|
CMutableTransaction txDummy;
|
|
|
|
|
for (const CAmount &amount : CoinControlDialog::payAmounts)
|
|
|
|
|
{
|
|
|
|
|
nPayAmount += amount;
|
|
|
|
@ -409,7 +408,6 @@ void CoinControlDialog::updateLabels(CCoinControl& m_coin_control, WalletModel *
|
|
|
|
|
{
|
|
|
|
|
// Assumes a p2pkh script size
|
|
|
|
|
CTxOut txout(amount, CScript() << std::vector<unsigned char>(24, 0));
|
|
|
|
|
txDummy.vout.push_back(txout);
|
|
|
|
|
fDust |= IsDust(txout, model->node().getDustRelayFee());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|