mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
WIP spark mint transaction fix
This commit is contained in:
parent
095bfc2ff3
commit
2e19dd8545
1 changed files with 3 additions and 3 deletions
|
@ -321,10 +321,10 @@ mixin SparkInterface on Bip39HDWallet, ElectrumXInterface {
|
|||
List<int> serialContext = [];
|
||||
|
||||
final mintRecipients = LibSpark.createSparkMintRecipients(
|
||||
outputs: txData.utxos!
|
||||
outputs: txData.recipients!
|
||||
.map((e) => (
|
||||
sparkAddress: e.address!,
|
||||
value: e.value,
|
||||
sparkAddress: e.address,
|
||||
value: e.amount.raw.toInt(),
|
||||
memo: "Stackwallet spark mint"
|
||||
))
|
||||
.toList(),
|
||||
|
|
Loading…
Reference in a new issue