BREAKING CHANGE: requires Solana version v0.13.0 or greater
feat: Update to current solana tx format
This commit is contained in:
committed by
Michael Vines
parent
853ea88fd0
commit
efd0392706
@ -75,7 +75,7 @@ export class Loader {
|
||||
);
|
||||
|
||||
const transaction = new Transaction().add({
|
||||
keys: [program.publicKey],
|
||||
keys: [{pubkey: program.publicKey, isSigner: true}],
|
||||
programId: this.programId,
|
||||
data,
|
||||
});
|
||||
@ -119,7 +119,7 @@ export class Loader {
|
||||
);
|
||||
|
||||
const transaction = new Transaction().add({
|
||||
keys: [program.publicKey],
|
||||
keys: [{pubkey: program.publicKey, isSigner: true}],
|
||||
programId: this.programId,
|
||||
data,
|
||||
});
|
||||
|
Reference in New Issue
Block a user