set MIN_ZOUTS to 7, add more zdust addr

This commit is contained in:
DenioD
2020-01-05 00:34:26 +01:00
parent f6eb31367b
commit 248273c756
3 changed files with 27 additions and 115 deletions

View File

@@ -8,6 +8,7 @@
#include "controller.h"
#include "recurring.h"
using json = nlohmann::json;
void MainWindow::setupSendTab() {
@@ -504,6 +505,7 @@ Tx MainWindow::createTxFromSendPage() {
for (int i=0; i < totalItems; i++) {
QString addr = ui->sendToWidgets->findChild<QLineEdit*>(QString("Address") % QString::number(i+1))->text().trimmed();
// Remove label if it exists
addr = AddressBook::addressFromAddressLabel(addr);
// QString dustamt = "0";
@@ -533,8 +535,11 @@ Tx MainWindow::createTxFromSendPage() {
tx.toAddrs.push_back( ToFields{addr, amt, memo} );
}
tx.fee = Settings::getMinerFee();