Skip to content

Commit

Permalink
Add missing interval configs to testnet launcher (#1532)
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel authored Sep 18, 2023
1 parent 7e67c78 commit 11e4c33
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testnet/launcher/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ func (t *Testnet) Start() error {
node.WithDebugNamespaceEnabled(true),
node.WithLogLevel(4),
node.WithEdgelessDBImage("ghcr.io/edgelesssys/edgelessdb-sgx-4gb:v0.3.2"), // default edgeless db value
node.WithBatchInterval("1s"),
node.WithRollupInterval("3s"),
)

sequencerNode := node.NewDockerNode(sequencerNodeConfig)
Expand Down Expand Up @@ -102,6 +104,8 @@ func (t *Testnet) Start() error {
node.WithDebugNamespaceEnabled(true),
node.WithLogLevel(4),
node.WithEdgelessDBImage("ghcr.io/edgelesssys/edgelessdb-sgx-4gb:v0.3.2"), // default edgeless db value
node.WithBatchInterval("1s"),
node.WithRollupInterval("3s"),
)

validatorNode := node.NewDockerNode(validatorNodeConfig)
Expand Down

0 comments on commit 11e4c33

Please sign in to comment.