Merge pull request #15 from cz-it/master

[FIX] fix apply exception for solana/web3.js v78.1
This commit is contained in:
Gary Wang 2020-10-01 03:36:32 -07:00 committed by GitHub
commit f582876458
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import React, { useContext, useMemo } from 'react';
import * as bip32 from 'bip32';
import { Account, SystemProgram } from '@solana/web3.js';
import { Account, SystemProgram, Transaction } from '@solana/web3.js';
import nacl from 'tweetnacl';
import {
setInitialAccountInfo,
@ -86,12 +86,15 @@ export class Wallet {
};
transferSol = async (destination, amount) => {
return await this.connection.sendTransaction(
const trx = new Transaction().add(
SystemProgram.transfer({
fromPubkey: this.publicKey,
toPubkey: destination,
lamports: amount,
}),
})
);
return await this.connection.sendTransaction(
trx,
[this.account],
);
};