coordinator: fix feature toggle (#874)

* coordinator: fix feature toggle

* coordinator: remove unnecessary configs
This commit is contained in:
Fluent Crafter
2025-04-15 14:08:13 +01:00
committed by GitHub
parent 2ea3ceaff8
commit 8cbfc75ffb
4 changed files with 4 additions and 15 deletions

View File

@@ -93,8 +93,6 @@ request-retry.backoff-delay="PT1S"
request-retry.failures-warning-threshold=2
l1-query-block-tag="LATEST"
l1-polling-interval="PT12S"
l1-request-retry.backoff-delay="PT1S"
l1-request-retry.failures-warning-threshold=2
[api]
observability_port=9545
@@ -119,7 +117,7 @@ gas-price-cap-multiplier-for-finalization=2.0
# blocks are 2s, this may catch in between blocks
send-message-event-polling-interval="PT1S"
# 10 blocks worth at 2s per block
max-event-scraping-time="PT5S"
max-event-scraping-time="PT5S" # use by message anchoring service
# An optional config to define the L1 block time with default as PT12S
block-time="PT1S" # set the same as local L1 block time
block-range-loop-limit=500

View File

@@ -498,10 +498,6 @@ data class Type2StateProofProviderConfig(
val endpoints: List<URL>,
val l1QueryBlockTag: BlockParameter.Tag = BlockParameter.Tag.LATEST,
val l1PollingInterval: Duration = Duration.ofSeconds(12),
val l1RequestRetry: RequestRetryConfigTomlFriendly = RequestRetryConfigTomlFriendly(
backoffDelay = Duration.ofSeconds(1),
failuresWarningThreshold = 3
),
override val requestRetry: RequestRetryConfigTomlFriendly
) : RequestRetryConfigurable
@@ -556,7 +552,8 @@ data class CoordinatorConfigTomlDto(
api = api,
l2Signer = l2Signer,
messageAnchoringService = messageAnchoringService,
l2NetworkGasPricingService = if (!testL1Disabled) l2NetworkGasPricing.reified() else null,
l2NetworkGasPricingService =
if (testL1Disabled || l2NetworkGasPricing.disabled) null else l2NetworkGasPricing.reified(),
l1DynamicGasPriceCapService = l1DynamicGasPriceCapService,
testL1Disabled = testL1Disabled,
proversConfig = prover.reified()

View File

@@ -136,11 +136,7 @@ class CoordinatorConfigTest {
failuresWarningThreshold = 2
),
l1QueryBlockTag = BlockParameter.Tag.SAFE,
l1PollingInterval = Duration.parse("PT6S"),
l1RequestRetry = RequestRetryConfigTomlFriendly(
backoffDelay = Duration.parse("PT0.5S"),
failuresWarningThreshold = 20
)
l1PollingInterval = Duration.parse("PT6S")
)
private val stateManagerConfig = StateManagerClientConfig(
version = "2.3.0",

View File

@@ -75,8 +75,6 @@ request-retry.backoff-delay="PT1S"
request-retry.failures-warning-threshold=2
l1-query-block-tag="SAFE"
l1-polling-interval="PT6S"
l1-request-retry.backoff-delay="PT0.5S"
l1-request-retry.failures-warning-threshold=20
[api]
observability_port=9545