Skip to content

Commit

Permalink
Merge pull request #377 from curvefi/fix/fixed-GaugePool
Browse files Browse the repository at this point in the history
fix: fixed GaugePool
  • Loading branch information
fedorovdg authored Aug 3, 2024
2 parents fa8c97c + bf27211 commit 230b7ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@curvefi/api",
"version": "2.61.10",
"version": "2.61.11",
"description": "JavaScript library for curve.fi",
"main": "lib/index.js",
"author": "Macket",
Expand Down
6 changes: 3 additions & 3 deletions src/pools/gaugePool.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export class GaugePool implements IGaugePool {
this.address = address;
this.poolName = poolName;
this.estimateGas = {
addReward: this.addRewardEstimateGas,
depositRewardApprove: this.depositRewardApproveEstimateGas,
depositReward: this.depositRewardEstimateGas,
addReward: this.addRewardEstimateGas.bind(this),
depositRewardApprove: this.depositRewardApproveEstimateGas.bind(this),
depositReward: this.depositRewardEstimateGas.bind(this),
}
}

Expand Down

0 comments on commit 230b7ac

Please sign in to comment.