Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
[stake] custodian on authorize and withdraw is a signer (#1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
ochaloup authored Dec 8, 2023
1 parent be3a154 commit 9855bfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/library-legacy/src/programs/stake.ts
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ export class StakeProgram {
if (custodianPubkey) {
keys.push({
pubkey: custodianPubkey,
isSigner: false,
isSigner: true,
isWritable: false,
});
}
Expand Down Expand Up @@ -776,7 +776,7 @@ export class StakeProgram {
if (custodianPubkey) {
keys.push({
pubkey: custodianPubkey,
isSigner: false,
isSigner: true,
isWritable: false,
});
}
Expand Down Expand Up @@ -903,7 +903,7 @@ export class StakeProgram {
if (custodianPubkey) {
keys.push({
pubkey: custodianPubkey,
isSigner: false,
isSigner: true,
isWritable: false,
});
}
Expand Down

0 comments on commit 9855bfb

Please sign in to comment.