Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/appwallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ export class Wallet extends React.Component {
'发送交易',
'请稍后...',
async () => {
const transaction = web3.SystemProgram.move(
const transaction = web3.SystemProgram.transfer(
this.web3solAccount.publicKey,
new web3.PublicKey(this.state.destTokenAccountPublicKey),
this.state.transferTokenAmount,
Expand Down
2 changes: 1 addition & 1 deletion src/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ export class Wallet extends React.Component {
'发送交易',
'请稍后...',
async () => {
const transaction = web3.SystemProgram.move(
const transaction = web3.SystemProgram.transfer(
this.web3solAccount.publicKey,
new web3.PublicKey(this.state.recipientPublicKey),
this.state.recipientAmount,
Expand Down