mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 03:49:22 +00:00
epic amount type cast error fix
This commit is contained in:
parent
eb9f76ad02
commit
1e71e3d615
1 changed files with 2 additions and 2 deletions
|
@ -479,7 +479,7 @@ class EpicCashWallet extends CoinServiceAPI
|
|||
"minimumConfirmations": MINIMUM_CONFIRMATIONS,
|
||||
"message": "",
|
||||
"amount": (txData['recipientAmt'] as Amount).raw.toInt(),
|
||||
"address": (txData['addresss'] as Amount).raw.toInt(),
|
||||
"address": txData['addresss'] as String,
|
||||
}, name: walletName);
|
||||
|
||||
message = await receivePort.first;
|
||||
|
@ -497,7 +497,7 @@ class EpicCashWallet extends CoinServiceAPI
|
|||
"function": "createTransaction",
|
||||
"wallet": wallet!,
|
||||
"amount": (txData['recipientAmt'] as Amount).raw.toInt(),
|
||||
"address": (txData['addresss'] as Amount).raw.toInt(),
|
||||
"address": txData['addresss'] as String,
|
||||
"secretKeyIndex": 0,
|
||||
"epicboxConfig": epicboxConfig.toString(),
|
||||
"minimumConfirmations": MINIMUM_CONFIRMATIONS,
|
||||
|
|
Loading…
Reference in a new issue