Skip to content

Commit

Permalink
sys-lend: correct SOL pool
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Jun 3, 2024
1 parent 3b136d2 commit b061189
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/bin/sys-lend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ lazy_static::lazy_static! {
])) ,
("solend-turbosol", HashSet::from([
Token::USDC,
Token::wSOL,
])) ,
("solend-jlp", HashSet::from([
Token::USDC,
Token::wSOL,
])) ,
("mfi", HashSet::from([
Token::USDC,
Expand Down Expand Up @@ -1982,20 +1982,20 @@ fn solend_load_reserve_for_pool(
pubkey!["8PbodeaosQP19SjYFx855UMqWxH2HynZLdBXmsrbac36"],
),
]),
"solend-turbosol" => HashMap::from([
"solend-turbosol" => HashMap::from([(
Token::USDC,
pubkey!["EjUgEaPpKMg2nqex9obb46gZQ6Ar9mWSdVKbw9A6PyXA"],
)]),
"solend-jlp" => HashMap::from([
(
Token::USDC,
pubkey!["EjUgEaPpKMg2nqex9obb46gZQ6Ar9mWSdVKbw9A6PyXA"],
pubkey!["GShhnkfbaYy41Fd8vSEk9zoiwZSKqbH1j16jZ2afV2GG"],
),
(
Token::wSOL,
pubkey!["8kd8cDJEioKFXckK8tP2FHNSQLDGguCFj5Vy1vK5eDGV"],
),
]),
"solend-jlp" => HashMap::from([(
Token::USDC,
pubkey!["GShhnkfbaYy41Fd8vSEk9zoiwZSKqbH1j16jZ2afV2GG"],
)]),
_ => unreachable!(),
};
let market_reserve_address = *market_reserve_map
Expand Down

0 comments on commit b061189

Please sign in to comment.