Remove extra Tx fields

This commit is contained in:
adityapk00
2018-11-23 19:18:47 -08:00
parent b428f40def
commit 32bcfe2ce1
4 changed files with 5 additions and 7 deletions

View File

@@ -304,7 +304,7 @@ void Turnstile::executeMigrationStep() {
}
// Create the Tx
auto tx = Tx{ nextStep->fromAddr, { to }, Settings::getMinerFee(), false };
auto tx = Tx{ nextStep->fromAddr, { to }, Settings::getMinerFee() };
// 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(), false };
auto tx = Tx{ nextStep->intTAddr, to, Settings::getMinerFee()};
// And send it
doSendTx(tx, [=] () {