mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +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 = [];
|
List<int> serialContext = [];
|
||||||
|
|
||||||
final mintRecipients = LibSpark.createSparkMintRecipients(
|
final mintRecipients = LibSpark.createSparkMintRecipients(
|
||||||
outputs: txData.utxos!
|
outputs: txData.recipients!
|
||||||
.map((e) => (
|
.map((e) => (
|
||||||
sparkAddress: e.address!,
|
sparkAddress: e.address,
|
||||||
value: e.value,
|
value: e.amount.raw.toInt(),
|
||||||
memo: "Stackwallet spark mint"
|
memo: "Stackwallet spark mint"
|
||||||
))
|
))
|
||||||
.toList(),
|
.toList(),
|
||||||
|
|
Loading…
Reference in a new issue