You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// batch size check done inside of getTxnFeeFromSpendableOutputs is only possible error
344
-
if (*txnFee == 0 && resultOutputs.size() == 0) {
345
-
control::MessageBox::messageText(parent, "Send Amount", "We can't send such large amount of the coins in a single transaction because your outputs are too small. Please send smaller amount.");
346
-
returnfalse;
347
-
}
348
342
returntrue;
349
343
}
350
344
@@ -387,13 +381,6 @@ bool getOutputsToSend( const QString & accountName, int outputsNumber, int64_t n
if (hodlResultOutputs.size()+freeOuts.size() + outputsNumber + 1 > 498 ) {
393
-
control::MessageBox::messageText(parent, "Send Amount", "We can't send such large amount of the coins in a single transaction because your outputs are too small. Please send smaller amount.");
394
-
returnfalse;
395
-
}
396
-
397
384
// User approve the spending, preparing the list of outputs...
0 commit comments