Skip to content

Commit

Permalink
filler: update isFillableByVAMM
Browse files Browse the repository at this point in the history
  • Loading branch information
crispheaney committed Dec 22, 2023
1 parent 767a318 commit 023e59c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "lib/index.js",
"license": "Apache-2.0",
"dependencies": {
"@drift-labs/jit-proxy": "0.10.150",
"@drift-labs/sdk": "2.52.0-beta.14",
"@drift-labs/jit-proxy": "0.10.151",
"@drift-labs/sdk": "2.52.0-beta.15",
"@opentelemetry/api": "^1.1.0",
"@opentelemetry/auto-instrumentations-node": "^0.31.1",
"@opentelemetry/exporter-prometheus": "^0.31.0",
Expand Down
6 changes: 4 additions & 2 deletions src/bots/filler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,8 @@ export class FillerBot implements Bot {
)!,
oraclePriceData,
this.slotSubscriber.currentSlot,
Date.now() / 1000
Date.now() / 1000,
this.driftClient.getStateAccount().minPerpAuctionDuration
)
) {
logger.warn(
Expand All @@ -838,7 +839,8 @@ export class FillerBot implements Bot {
)!,
oraclePriceData,
this.slotSubscriber.currentSlot,
Date.now() / 1000
Date.now() / 1000,
this.driftClient.getStateAccount().minPerpAuctionDuration
)}`
);
logger.warn(
Expand Down

0 comments on commit 023e59c

Please sign in to comment.