Skip to content

Commit a13bb71

Browse files
committed
fix: use duration for statekeeper var
1 parent 3cb7476 commit a13bb71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/abstract-node/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: abstract-node
33
description: External node for syncing and serving blockchain data for Abstract
4-
version: 0.1.34
4+
version: 0.1.35
55
type: application
66
icon: https://abstract-assets.abs.xyz/icons/light.png
77
keywords:

charts/abstract-node/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ node:
260260
snapshotRecoveryEnabled: true
261261
snapshotBucket: 'raas-abstract-mainnet-external-node-snapshots'
262262
statekeeper:
263-
l2BlockCommitDeadline: 200
263+
l2BlockCommitDeadline: "200 ms"
264264

265265
## Whether or not to allocate persistent volume disk for the rocksdb directories.
266266
## In case of node failure, the node data directory will still persist.

docker/external-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ services:
110110
#EN_CONSENSUS_CONFIG_PATH: "/configs/consensus_config.yaml"
111111
#EN_CONSENSUS_SECRETS_PATH: "/configs/consensus_secrets.yaml"
112112
# Statekeeper config for block times
113-
EN_STATE_KEEPER_L2_BLOCK_COMMIT_DEADLINE: ${EN_STATE_KEEPER_L2_BLOCK_COMMIT_DEADLINE:-200}
113+
EN_STATE_KEEPER_L2_BLOCK_COMMIT_DEADLINE: ${EN_STATE_KEEPER_L2_BLOCK_COMMIT_DEADLINE:-"200 ms"}
114114
# API configuration for eth_sendRawTransactionSync timeouts
115115
EN_API_SEND_RAW_TX_SYNC_DEFAULT_TIMEOUT_MS: ${EN_API_SEND_RAW_TX_SYNC_DEFAULT_TIMEOUT_MS:-2000}
116116
EN_API_SEND_RAW_TX_SYNC_MAX_TIMEOUT_MS: ${EN_API_SEND_RAW_TX_SYNC_MAX_TIMEOUT_MS:-10000}

0 commit comments

Comments
 (0)