Skip to content

Commit

Permalink
moonwell fix
Browse files Browse the repository at this point in the history
  • Loading branch information
slasher125 committed Oct 25, 2023
1 parent ecd8369 commit 2dabc35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/adaptors/moonwell/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,9 @@ const getApy = async () => {
token_info = mrd_prices[_emissionToken]
}

let price = token_info.price
let decimals = token_info.decimals
let symbol = token_info.symbol
let price = token_info?.price
let decimals = token_info?.decimals
let symbol = token_info?.symbol

//only active
if (_endTime > NOW) {
Expand Down

0 comments on commit 2dabc35

Please sign in to comment.