fix argument order

This commit is contained in:
Jordan Sexton 2022-02-10 17:59:33 -06:00
parent b37390433c
commit da7a97c76e
1 changed files with 4 additions and 4 deletions

View File

@ -36,8 +36,8 @@ import { createMint, getOrCreateAssociatedTokenAccount, mintTo, transfer } from
mint,
fromTokenAccount.address,
fromWallet.publicKey,
[],
1000000000
1000000000,
[]
);
console.log('mint tx:', signature);
@ -48,8 +48,8 @@ import { createMint, getOrCreateAssociatedTokenAccount, mintTo, transfer } from
fromTokenAccount.address,
toTokenAccount.address,
fromWallet.publicKey,
[],
1000000000
1000000000,
[]
);
console.log('transfer tx:', signature);
})();