Skip to content

Commit e3fa870

Browse files
committed
fix: remove explicit funding account from resizemapping ix
1 parent f15fac5 commit e3fa870

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

program/rust/src/tests/pyth_simulator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,12 +492,12 @@ 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![AccountMeta::new(mapping_keypair.pubkey(), false)],
496496
);
497497

498498
self.process_ixs(
499499
&[instruction],
500-
&vec![mapping_keypair],
500+
&vec![],
501501
&copy_keypair(&self.genesis_keypair),
502502
)
503503
.await

0 commit comments

Comments
 (0)