Remove extra Tx fields
This commit is contained in:
@@ -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, [=] () {
|
||||
|
||||
Reference in New Issue
Block a user