Skip to content

Commit 7ada40a

Browse files
authored
Merge pull request #40 from curvefi/fix/fix-active_band_with_skip
fix: fixed active_band_with_skip
2 parents a39f09f + 3b27243 commit 7ada40a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@curvefi/stablecoin-api",
3-
"version": "1.5.17",
3+
"version": "1.5.18",
44
"description": "JavaScript library for Curve Stablecoin",
55
"main": "lib/index.js",
66
"author": "Macket",

src/llammas/LlammaTemplate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export class LlammaTemplate {
282282
});
283283

284284
private statsActiveBand = memoize(async (): Promise<number> => {
285-
return (await crvusd.contracts[this.address].contract.active_band()).toNumber()
285+
return (await crvusd.contracts[this.address].contract.active_band_with_skip()).toNumber()
286286
},
287287
{
288288
promise: true,

0 commit comments

Comments
 (0)