Skip to content
This repository has been archived by the owner on Jan 7, 2025. It is now read-only.

Commit

Permalink
Merge pull request #192 from mwrites/fix/tranfer-sol-rent-exempt
Browse files Browse the repository at this point in the history
Transaction leaves an account with a lower balance than rent-exempt minimum
  • Loading branch information
jacobcreech authored May 20, 2022
2 parents fb445e7 + f7c118f commit 067d255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SendTransaction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const SendTransaction: FC = () => {
SystemProgram.transfer({
fromPubkey: publicKey,
toPubkey: Keypair.generate().publicKey,
lamports: 1,
lamports: 1_000_000,
})
);

Expand Down

0 comments on commit 067d255

Please sign in to comment.