Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: custom mana allotment should send to itself #8528

Merged
merged 11 commits into from
May 20, 2024
2 changes: 1 addition & 1 deletion packages/desktop/components/popups/AllotManaPopup.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
const accountId = AddressConverter.parseBech32Address(accountAddress)
// Send 0 amount transaction to accountAddress with amount in the allotMana
const prepareOutput = await $selectedWallet.prepareOutput(
{ recipientAddress: accountAddress, amount: '0' },
{ recipientAddress: $selectedWallet.depositAddress, amount: '0' },
begonaalvarezd marked this conversation as resolved.
Show resolved Hide resolved
getDefaultTransactionOptions()
)
await $selectedWallet.sendOutputs([prepareOutput], {
Expand Down
Loading