Skip to content

Commit

Permalink
Increase order duration to 16s (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyborn authored Sep 25, 2024
1 parent 1b558ef commit 650a494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlers/hard-quote/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ function getDecayEndTime(chainId: number, startTime: number): number {
case ChainId.MAINNET:
return startTime + 60; // 5 blocks
case ChainId.ARBITRUM_ONE:
return startTime + 8; // 8 seconds
return startTime + 16; // 16 seconds
default:
return startTime + 30; // 30 seconds
}
Expand Down

0 comments on commit 650a494

Please sign in to comment.