mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
null error fix on send from stack when doing epic to any swap
This commit is contained in:
parent
c5a14815ec
commit
754c6e6440
1 changed files with 1 additions and 1 deletions
|
@ -609,7 +609,7 @@ class EpiccashWallet extends Bip39Wallet {
|
||||||
wallet: wallet!,
|
wallet: wallet!,
|
||||||
selectionStrategyIsAll: 0,
|
selectionStrategyIsAll: 0,
|
||||||
minimumConfirmations: cryptoCurrency.minConfirms,
|
minimumConfirmations: cryptoCurrency.minConfirms,
|
||||||
message: txData.noteOnChain!,
|
message: txData.noteOnChain ?? "",
|
||||||
amount: txData.recipients!.first.amount.raw.toInt(),
|
amount: txData.recipients!.first.amount.raw.toInt(),
|
||||||
address: txData.recipients!.first.address,
|
address: txData.recipients!.first.address,
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue