Skip to content

Commit

Permalink
Fixing docs for transfers (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
KarimJedda authored Oct 27, 2023
1 parent 2b4c167 commit 6d3b2d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/examples/promise/make-transfer.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function main () {
const alice = keyring.addFromUri('//Alice');

// Create a extrinsic, transferring 12345 units to Bob
const transfer = api.tx.balances.transfer(BOB, 12345);
const transfer = api.tx.balances.transferAllowDeath(BOB, 12345);

// Sign and send the transaction using our account
const hash = await transfer.signAndSend(alice);
Expand Down

0 comments on commit 6d3b2d4

Please sign in to comment.