Skip to content

Commit

Permalink
Extend Arbitrum auction by 1s (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
codyborn authored Jul 22, 2024
1 parent 8a0fc13 commit 7cb7535
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 @@ -222,7 +222,7 @@ function getDecayEndTime(chainId: number, startTime: number): number {
case ChainId.MAINNET:
return startTime + 60; // 5 blocks
case ChainId.ARBITRUM_ONE:
return startTime + 7; // 7 seconds
return startTime + 8; // 8 seconds
default:
return startTime + 30; // 30 seconds
}
Expand Down

0 comments on commit 7cb7535

Please sign in to comment.