fix: remove spawn

This commit is contained in:
Michael Vines
2019-02-14 22:04:13 -08:00
parent 27c2a11635
commit 41865547ee
6 changed files with 1 additions and 308 deletions

View File

@ -35,7 +35,6 @@ declare module '@solana/web3.js' {
// === src/connection.js ===
declare export type AccountInfo = {
executable: boolean,
loader: PublicKey,
owner: PublicKey,
tokens: number,
userdata: Buffer,
@ -90,7 +89,6 @@ declare module '@solana/web3.js' {
): Transaction;
static move(from: PublicKey, to: PublicKey, amount: number): Transaction;
static assign(from: PublicKey, programId: PublicKey): Transaction;
static spawn(programId: PublicKey): Transaction;
}
// === src/transaction.js ===