Skip to content

Commit

Permalink
fix: address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-bahjati committed Aug 27, 2024
1 parent 452568b commit 337bc21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
7 changes: 1 addition & 6 deletions src/anchor/idl.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
},
{
"name": "permissionsAccount",
"isMut": false,
"isMut": true,
"isSigner": false,
"pda": {
"seeds": [
Expand Down Expand Up @@ -668,11 +668,6 @@
}
]
}
},
{
"name": "systemProgram",
"isMut": false,
"isSigner": false
}
],
"args": []
Expand Down
9 changes: 2 additions & 7 deletions src/anchor/program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export type PythOracle = {
},
{
name: 'permissionsAccount'
isMut: false
isMut: true
isSigner: false
pda: {
seeds: [
Expand Down Expand Up @@ -688,12 +688,7 @@ export type PythOracle = {
},
]
}
},
{
name: 'systemProgram'
isMut: false
isSigner: false
},
}
]
args: []
},
Expand Down

0 comments on commit 337bc21

Please sign in to comment.