fix: add Buffer to loader elf data arg type

This commit is contained in:
Justin Starry
2020-02-11 15:22:12 +08:00
committed by Michael Vines
parent e8ca68043a
commit 7073310e2b
4 changed files with 6 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ export class BpfLoader {
static load(
connection: Connection,
payer: Account,
elf: Array<number>,
elf: Buffer | Array<number>,
): Promise<PublicKey> {
const program = new Account();
return Loader.load(connection, payer, program, BpfLoader.programId, elf);

View File

@@ -52,7 +52,7 @@ export class Loader {
payer: Account,
program: Account,
programId: PublicKey,
data: Array<number>,
data: Buffer | Array<number>,
): Promise<PublicKey> {
{
const balanceNeeded = await connection.getMinimumBalanceForRentExemption(