This commit is contained in:
Conner Gallagher 2022-08-16 13:13:54 -06:00
parent 446e4d0463
commit 6805e6e984
1 changed files with 3 additions and 2 deletions

View File

@ -1673,9 +1673,10 @@ export class JobAccount {
})
.accounts({
job: jobAccount.publicKey,
authorWallet: params.authority,
authority: params.authority,
programState: stateAccount.publicKey,
payer: payerKeypair.publicKey,
systemProgram: SystemProgram.programId,
})
.signers([jobAccount])
.rpc();
@ -1706,7 +1707,7 @@ export class JobAccount {
authority: payerKeypair.publicKey,
programState: stateAccount.publicKey,
payer: payerKeypair.publicKey,
systemProgram: anchor.web3.SystemProgram.programId,
systemProgram: SystemProgram.programId,
})
.signers([jobAccount])
.rpc()