Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into pedro/rollup_producti…
Browse files Browse the repository at this point in the history
…on_based_on_size
  • Loading branch information
otherview committed Sep 20, 2023
2 parents 43f9f40 + 1a149de commit e93a6af
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy-testnet-l2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
RESOURCE_TESTNET_NAME: ${{ steps.outputVars.outputs.RESOURCE_TESTNET_NAME }}
L1_WS_URL: ${{ steps.outputVars.outputs.L1_WS_URL }}
L1_HTTP_URL: ${{ steps.outputVars.outputs.L1_HTTP_URL }}
BATCH_INTERVAL: ${{ steps.deployL2Contracts.outputs.BATCH_INTERVAL }}
ROLLUP_INTERVAL: ${{ steps.deployL2Contracts.outputs.ROLLUP_INTERVAL }}
BATCH_INTERVAL: ${{ steps.outputVars.outputs.BATCH_INTERVAL }}
ROLLUP_INTERVAL: ${{ steps.outputVars.outputs.ROLLUP_INTERVAL }}


steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-upgrade-testnet-l2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
RESOURCE_TESTNET_NAME: ${{ steps.outputVars.outputs.RESOURCE_TESTNET_NAME }}
L1_WS_URL: ${{ steps.outputVars.outputs.L1_WS_URL }}
VM_BUILD_NUMBER: ${{ steps.outputVars.outputs.VM_BUILD_NUMBER }}
BATCH_INTERVAL: ${{ steps.deployL2Contracts.outputs.BATCH_INTERVAL }}
ROLLUP_INTERVAL: ${{ steps.deployL2Contracts.outputs.ROLLUP_INTERVAL }}
BATCH_INTERVAL: ${{ steps.outputVars.outputs.BATCH_INTERVAL }}
ROLLUP_INTERVAL: ${{ steps.outputVars.outputs.ROLLUP_INTERVAL }}

steps:
- uses: actions/checkout@v3
Expand Down
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 e93a6af

Please sign in to comment.