Skip to content

Commit 0a7dd49

Browse files
Update solana/programs/matching-engine/src/fallback/processor/initialize_fast_market_order.rs
Co-authored-by: A5 Pickle <[email protected]>
1 parent 7619c0f commit 0a7dd49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

solana/programs/matching-engine/src/fallback/processor/initialize_fast_market_order.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ impl InitializeFastMarketOrder<'_> {
8383

8484
let accounts = vec![
8585
AccountMeta::new(*payer, true), // 0
86-
AccountMeta::new(*new_fast_market_order, false), // 1
87-
AccountMeta::new_readonly(*from_endpoint, false), // 2
86+
AccountMeta::new_readonly(*from_endpoint, false), // 1
87+
AccountMeta::new_readonly(*verify_vaa_shim_program, false), // 2
8888
AccountMeta::new_readonly(*wormhole_guardian_set, false), // 3
8989
AccountMeta::new_readonly(*shim_guardian_signatures, false), // 4
90-
AccountMeta::new_readonly(*verify_vaa_shim_program, false), // 5
90+
AccountMeta::new(*new_fast_market_order, false), // 5
9191
AccountMeta::new_readonly(solana_program::system_program::ID, false), // 6
9292
];
9393
debug_assert_eq!(accounts.len(), NUM_ACCOUNTS);

0 commit comments

Comments
 (0)