Commit 03d7194 1 parent 3996dff commit 03d7194 Copy full SHA for 03d7194
File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -172,6 +172,9 @@ 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 ( )
175
178
}
176
179
177
180
#[ derive( Clone ) ]
@@ -1749,9 +1752,9 @@ async fn mfi_load_user_account(
1749
1752
}
1750
1753
1751
1754
/*
1752
- fn mfi_load_user_account(
1755
+ async fn mfi_load_user_account(
1753
1756
wallet_address: Pubkey,
1754
- account_data_cache: &mut AccountDataCache,
1757
+ account_data_cache: &mut AccountDataCache<'_> ,
1755
1758
) -> Result<Option<(Pubkey, marginfi_v2::MarginfiAccount)>, Box<dyn std::error::Error>> {
1756
1759
use {
1757
1760
solana_account_decoder::UiDataSliceConfig,
You can’t perform that action at this time.
0 commit comments