fix: support loading with deprecated bpf loader (#11595)
This commit is contained in:
parent
d4309b6481
commit
9071da6da7
|
@ -36,14 +36,22 @@ export class BpfLoader {
|
||||||
* @param connection The connection to use
|
* @param connection The connection to use
|
||||||
* @param payer Account that will pay program loading fees
|
* @param payer Account that will pay program loading fees
|
||||||
* @param program Account to load the program into
|
* @param program Account to load the program into
|
||||||
* @param elfBytes The entire ELF containing the BPF program
|
* @param elf The entire ELF containing the BPF program
|
||||||
|
* @param version The version of the BPF loader to use
|
||||||
*/
|
*/
|
||||||
static load(
|
static load(
|
||||||
connection: Connection,
|
connection: Connection,
|
||||||
payer: Account,
|
payer: Account,
|
||||||
program: Account,
|
program: Account,
|
||||||
elf: Buffer | Uint8Array | Array<number>,
|
elf: Buffer | Uint8Array | Array<number>,
|
||||||
|
version: number = 2,
|
||||||
): Promise<void> {
|
): Promise<void> {
|
||||||
return Loader.load(connection, payer, program, BpfLoader.programId(), elf);
|
return Loader.load(
|
||||||
|
connection,
|
||||||
|
payer,
|
||||||
|
program,
|
||||||
|
BpfLoader.programId(version),
|
||||||
|
elf,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue