fix: bpf loader flow definition (#11714)

This commit is contained in:
Jack May 2020-08-19 15:35:45 -07:00 committed by GitHub
parent 5354df8c1c
commit eb007a233f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
web3.js/module.d.ts vendored
View File

@ -936,6 +936,7 @@ declare module '@solana/web3.js' {
payer: Account,
program: Account,
elfBytes: Buffer | Uint8Array | Array<number>,
version?: number,
): Promise<PublicKey>;
}

View File

@ -951,6 +951,7 @@ declare module '@solana/web3.js' {
payer: Account,
program: Account,
elfBytes: Buffer | Uint8Array | Array<number>,
version: ?number,
): Promise<PublicKey>;
}