From c6e1405c85431e31ef9851412c36f6cb32a12d2b Mon Sep 17 00:00:00 2001 From: microwavedcola1 Date: Mon, 19 Aug 2024 15:17:08 +0200 Subject: [PATCH] program: allow removing check for force closed tokens Signed-off-by: microwavedcola1 --- programs/mango-v4/src/state/oracle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/mango-v4/src/state/oracle.rs b/programs/mango-v4/src/state/oracle.rs index c7e24c772..f1a39af80 100644 --- a/programs/mango-v4/src/state/oracle.rs +++ b/programs/mango-v4/src/state/oracle.rs @@ -104,7 +104,7 @@ const_assert_eq!(size_of::() % 8, 0); #[derive(AnchorDeserialize, AnchorSerialize, Debug, Default)] pub struct OracleConfigParams { pub conf_filter: f32, - pub max_staleness_slots: Option, + pub max_staleness_slots: Option, } impl OracleConfigParams {