Skip to content

Commit

Permalink
chore: effectively disableing delay buffer (#275)
Browse files Browse the repository at this point in the history
* chore: effectively disableing delay buffer

* chore: typo

Co-authored-by: Henry <[email protected]>

---------

Co-authored-by: Henry <[email protected]>
  • Loading branch information
gzeoneth and godzillaba authored Dec 10, 2024
1 parent 0d9a563 commit 2c72296
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/files/configs/local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export const local: Config = {
maxDataSize: 117964,
isDelayBufferable: true,
bufferConfig: {
max: 14400,
threshold: 300,
max: 2 ** 32, // effectively disableing and will be enabled later
threshold: 2 ** 32, // effectively disableing and will be enabled later
replenishRateInBasis: 500,
},
},
Expand Down
4 changes: 2 additions & 2 deletions scripts/files/configs/sepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ export const sepolia: Config = {
maxDataSize: 117964,
isDelayBufferable: true,
bufferConfig: {
max: hoursToBlocks(24 * 365), // 365 days, effectively disableing and will be enabled later
threshold: hoursToBlocks(24 * 365), // 365 days, effectively disableing and will be enabled later
max: 2 ** 32, // effectively disableing and will be enabled later
threshold: 2 ** 32, // effectively disableing and will be enabled later
replenishRateInBasis: 500, // 5% replenishment rate
},
},
Expand Down

0 comments on commit 2c72296

Please sign in to comment.