diff --git a/src/utilities/transfers/transfers.ts b/src/utilities/transfers/transfers.ts index d908a17e8..8de4a1c6d 100644 --- a/src/utilities/transfers/transfers.ts +++ b/src/utilities/transfers/transfers.ts @@ -20,7 +20,7 @@ export async function signTransfer(input: Input): Promise { const { recipient, amount, keypair, tip } = input; const api = ConfigService.get('api'); - const tx = api.tx.balances.transfer(recipient, amount); + const tx = api.tx.balances.transferAllowDeath(recipient, amount); const signedTx = await tx.signAsync(keypair, { tip }); const hash = signedTx.hash.toHex(); diff --git a/src/views/SendToken/getFee.ts b/src/views/SendToken/getFee.ts index af1fc6fd9..cf9c1f35d 100644 --- a/src/views/SendToken/getFee.ts +++ b/src/views/SendToken/getFee.ts @@ -15,7 +15,7 @@ const fallbackAddressForFee = export async function getFee(input: FeeInput): Promise { const api = ConfigService.get('api'); - const tx = api.tx.balances.transfer( + const tx = api.tx.balances.transferAllowDeath( input.recipient || fallbackAddressForFee, input.amount, );