Skip to content

Commit

Permalink
Merge branch 'bold-merge' into blk-278-fix-bridgecreator-reorg-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gzeoneth authored Dec 10, 2024
2 parents ca06fd4 + 2b13047 commit ffb2469
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 @@ -45,8 +45,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 @@ -38,8 +38,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 ffb2469

Please sign in to comment.