Auto shielding for t Addresses

This commit is contained in:
adityapk00
2018-11-23 17:30:21 -08:00
parent 49da8ed5ee
commit b428f40def
7 changed files with 108 additions and 26 deletions

View File

@@ -304,7 +304,7 @@ void Turnstile::executeMigrationStep() {
}
// Create the Tx
auto tx = Tx{ nextStep->fromAddr, { to }, Settings::getMinerFee() };
auto tx = Tx{ nextStep->fromAddr, { to }, Settings::getMinerFee(), false };
// And send it
doSendTx(tx, [=] () {
@@ -339,7 +339,7 @@ void Turnstile::executeMigrationStep() {
QList<ToFields> to = { ToFields{ nextStep->destAddr, sendAmt, "", "" } };
// Create the Tx
auto tx = Tx{ nextStep->intTAddr, to, Settings::getMinerFee() };
auto tx = Tx{ nextStep->intTAddr, to, Settings::getMinerFee(), false };
// And send it
doSendTx(tx, [=] () {