Skip to content

Commit 1be39db

Browse files
committed
fixes
1 parent 9a5ea01 commit 1be39db

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/push-docker-rollup-creator.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
build-args: NITRO_CONTRACTS_BRANCH=v3.1.0
5959
file: ./docker/rollupcreator.Dockerfile
6060
platforms: linux/amd64
61-
push: ${{ github.event_name != 'pull_request' }}
61+
push: ${{ github.event_name == 'pull_request' }}
6262
tags: ${{ steps.meta.outputs.tags }}
6363
labels: ${{ steps.meta.outputs.labels }}
6464

@@ -77,7 +77,7 @@ jobs:
7777

7878
- name: Login to Github Container Repo
7979
uses: docker/login-action@v3
80-
if: github.event_name != 'pull_request'
80+
if: github.event_name == 'pull_request'
8181
with:
8282
registry: ghcr.io
8383
username: ${{ github.repository_owner }}
@@ -100,7 +100,7 @@ jobs:
100100
build-args: NITRO_CONTRACTS_BRANCH=v3.1.0
101101
file: ./docker/rollupcreator.Dockerfile
102102
platforms: linux/arm64
103-
push: ${{ github.event_name != 'pull_request' }}
103+
push: ${{ github.event_name == 'pull_request' }}
104104
tags: ${{ steps.meta.outputs.tags }}
105105
labels: ${{ steps.meta.outputs.labels }}
106106

nitro-config/sequencer_config.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,10 @@
7272
],
7373
"poll-interval": "60s",
7474
"is-decentralized-timeboost": true,
75-
"decentralized-timeboost-key-management-address": "0x2bbf15bc655c4cc157b769cfcb1ea9924b9e1a35"
75+
"decentralized-timeboost-key-management-address": "0x2bbf15bc655c4cc157b769cfcb1ea9924b9e1a35",
76+
"decentralized-timeboost-batch-verifier": {
77+
"wait-for-leader-delay": "5m"
78+
}
7679
},
7780
"block-validator": {
7881
"validation-server": {

0 commit comments

Comments
 (0)