Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c9942b3

Browse files
committedJan 7, 2025
fix: add a funding account to the resizemapping ix
1 parent f15fac5 commit c9942b3

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed
 

‎program/rust/src/instruction.rs

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ pub enum OracleCommand {
109109
// account[1] price account [writable]
110110
// account[2] permissions account [writable]
111111
InitPriceFeedIndex = 19,
112+
/// Resize mapping account
112113
// account[0] funding account [signer writable]
113114
// account[1] mapping account [writable]
114115
ResizeMapping = 20,

‎program/rust/src/processor/resize_mapping.rs

+12-5
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,26 @@ use {
3232
};
3333

3434
/// Resize mapping account.
35-
// account[1] mapping account [writable]
35+
/// account[0] funding account [signer writable]
36+
/// account[1] mapping account [writable]
3637
pub fn resize_mapping(
3738
program_id: &Pubkey,
3839
accounts: &[AccountInfo],
3940
instruction_data: &[u8],
4041
) -> ProgramResult {
41-
let mapping_account = match accounts {
42-
[x] => Ok(x),
43-
_ => Err(OracleError::InvalidNumberOfAccounts),
44-
}?;
42+
let (funding_account, mapping_account) = match accounts {
43+
[funding, mapping] => (funding, mapping),
44+
_ => return Err(OracleError::InvalidNumberOfAccounts.into()),
45+
};
46+
47+
// Verify funding account is a signer
48+
if !funding_account.is_signer {
49+
return Err(solana_program::program_error::ProgramError::MissingRequiredSignature);
50+
}
4551

4652
let hdr = load::<CommandHeader>(instruction_data)?;
4753

54+
// Verify mapping account is writable and owned by program
4855
check_valid_writable_account(program_id, mapping_account)?;
4956

5057
{

‎program/rust/src/tests/pyth_simulator.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -492,12 +492,15 @@ impl PythSimulator {
492492
let instruction = Instruction::new_with_bytes(
493493
self.program_id,
494494
bytes_of(&cmd),
495-
vec![AccountMeta::new(mapping_keypair.pubkey(), true)],
495+
vec![
496+
AccountMeta::new(self.genesis_keypair.pubkey(), true), // funding account
497+
AccountMeta::new(mapping_keypair.pubkey(), false), // mapping account
498+
],
496499
);
497500

498501
self.process_ixs(
499502
&[instruction],
500-
&vec![mapping_keypair],
503+
&vec![],
501504
&copy_keypair(&self.genesis_keypair),
502505
)
503506
.await

‎program/rust/src/tests/test_resize_mapping.rs

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ use {
1717
async fn test_resize_mapping() {
1818
let mut sim = PythSimulator::new().await;
1919
let mapping_keypair = sim.init_mapping().await.unwrap();
20+
21+
// First attempt should fail since account doesn't need resizing
2022
assert_eq!(
2123
sim.resize_mapping(&mapping_keypair)
2224
.await
@@ -28,6 +30,7 @@ async fn test_resize_mapping() {
2830
)
2931
);
3032

33+
// Truncate account to old size to test resizing
3134
sim.truncate_account(mapping_keypair.pubkey(), 20536).await; // Old size.
3235
for i in 0..14 {
3336
println!("resize #{i}");

0 commit comments

Comments
 (0)