Skip to content

Commit 74836d5

Browse files
committed
solana: more close fast market order fixes
1 parent 2654643 commit 74836d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub struct CloseFastMarketOrderAccounts<'ix> {
88
pub fast_market_order: &'ix Pubkey,
99
/// The account that will receive rent from the fast market order account.
1010
/// This account is the only authority that can close the fast market order.
11-
/// TODO: Rename to "refund_recipient".
11+
// TODO: Rename to "refund_recipient".
1212
pub close_account_refund_recipient: &'ix Pubkey,
1313
}
1414

solana/programs/matching-engine/src/state/fast_market_order.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl FastMarketOrder {
127127

128128
/// A double hash of the serialised fast market order. Used for seeds and
129129
/// verification.
130-
/// TODO: Change return type to keccak::Hash
130+
// TODO: Change return type to keccak::Hash
131131
pub fn digest(&self) -> [u8; 32] {
132132
wormhole_svm_definitions::compute_keccak_digest(
133133
keccak::hashv(&[

0 commit comments

Comments
 (0)