mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-04-14 18:22:54 +00:00
xmr/wow send outputs missing error fix
This commit is contained in:
parent
b0eeec7568
commit
506c41c129
2 changed files with 2 additions and 0 deletions
lib/wallets/wallet/impl
|
@ -461,6 +461,7 @@ class MoneroWallet extends CryptonoteWallet with CwBasedInterface {
|
|||
output.sendAll = isSendAll;
|
||||
String amountToSend = recipient.amount.decimal.toString();
|
||||
output.setCryptoAmount(amountToSend);
|
||||
outputs.add(output);
|
||||
}
|
||||
|
||||
final tmp =
|
||||
|
|
|
@ -506,6 +506,7 @@ class WowneroWallet extends CryptonoteWallet with CwBasedInterface {
|
|||
output.sendAll = isSendAll;
|
||||
String amountToSend = recipient.amount.decimal.toString();
|
||||
output.setCryptoAmount(amountToSend);
|
||||
outputs.add(output);
|
||||
}
|
||||
|
||||
final tmp =
|
||||
|
|
Loading…
Reference in a new issue