Commit 8be1bb0 1 parent 3996dff commit 8be1bb0 Copy full SHA for 8be1bb0
File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,10 @@ fn supported_pools_for_token(token: Token) -> Vec<String> {
172
172
. collect ( ) ;
173
173
supported_tokens. sort ( ) ;
174
174
supported_tokens
175
+ . into_iter ( )
176
+ . filter ( |pool| pool != "mfi" )
177
+ . collect ( )
178
+
175
179
}
176
180
177
181
#[ derive( Clone ) ]
@@ -1749,9 +1753,9 @@ async fn mfi_load_user_account(
1749
1753
}
1750
1754
1751
1755
/*
1752
- fn mfi_load_user_account(
1756
+ async fn mfi_load_user_account(
1753
1757
wallet_address: Pubkey,
1754
- account_data_cache: &mut AccountDataCache,
1758
+ account_data_cache: &mut AccountDataCache<'_> ,
1755
1759
) -> Result<Option<(Pubkey, marginfi_v2::MarginfiAccount)>, Box<dyn std::error::Error>> {
1756
1760
use {
1757
1761
solana_account_decoder::UiDataSliceConfig,
You can’t perform that action at this time.
0 commit comments