File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/adaptors/velodrome-v3 Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ const getApy = async () => {
8989 let allStakedData = [ ] ;
9090 for ( const pool of allPoolsData ) {
9191 // don't waste RPC calls if gauge has no staked liquidity
92- if ( Number ( pool . gauge_liquidity ) == 0 || ! pool . gauge_active ) {
92+ if ( Number ( pool . gauge_liquidity ) == 0 ) {
9393 allStakedData . push ( { 'amount0' : 0 , 'amount1' : 0 } ) ;
9494 continue ;
9595 }
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "module" : " commonjs" ,
4- "target" : " ES5 " ,
4+ "target" : " ES2020 " ,
55 "strict" : false ,
66 "types" : [" node" , " jest" ],
77 "resolveJsonModule" : true ,
1212 "noFallthroughCasesInSwitch" : true ,
1313 "esModuleInterop" : true ,
1414 "allowJs" : true ,
15- "lib" : [" ES2020.Promise " , " ES6 " ],
15+ "lib" : [" ES2020" ],
1616 "moduleDetection" : " force"
1717 },
1818 "include" : [" ./src/**/*" ]
You can’t perform that action at this time.
0 commit comments