Skip to content

Commit e77a2af

Browse files
committed
2.3.2 tuning
1 parent f123568 commit e77a2af

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@reserve-protocol/dtf-rebalance-lib",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "Rebalancing library for DTFs in typescript",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

src/open-auction.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,7 @@ export const getOpenAuction = (
331331

332332
target = initialProgression.add(ONE.sub(initialProgression).mul(finalStageAt));
333333

334-
// never leave more than 1 bps for next auction
335-
if (target.gt(ONE.sub(1e-4))) {
334+
if (target.gt(ONE.sub(1e-5))) {
336335
target = ONE;
337336
}
338337

0 commit comments

Comments
 (0)