fix: remove return value from load, unnecessary

This commit is contained in:
Jack May
2020-05-20 11:57:51 -07:00
committed by Michael Vines
parent 6b0c4bf17f
commit f02e73cd5e
3 changed files with 6 additions and 7 deletions

View File

@ -39,7 +39,7 @@ export class BpfLoader {
payer: Account,
program: Account,
elf: Buffer | Uint8Array | Array<number>,
): Promise<PublicKey> {
): Promise<void> {
return Loader.load(connection, payer, program, BpfLoader.programId, elf);
}
}