Skip to content

Commit 52ad07d

Browse files
committed
Rename
1 parent 488cb7e commit 52ad07d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
./smoke-test-l3.bash,
2525
./smoke-test-nitro-simple.bash,
2626
./smoke-test-full-node.bash,
27-
./smoke-test-espresso-finality-node.bash,
27+
./smoke-test-caff-node.bash,
2828
./smoke-test-altlayer.bash,
2929
./smoke-test-caldera.bash,
3030
]

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ services:
186186
depends_on:
187187
- geth
188188

189-
sequencer-espresso-finality:
189+
caff-node:
190190
pid: host # allow debugging
191191
image: nitro-node-dev-testnode
192192
entrypoint: /usr/local/bin/nitro
@@ -199,7 +199,7 @@ services:
199199
- "l1keystore:/home/user/l1keystore"
200200
- "config:/config"
201201
- "tokenbridge-data:/tokenbridge-data"
202-
command: --conf.file /config/espresso_finality_sequencer_config.json --node.feed.output.enable --node.feed.output.port 9642 --http.api net,web3,eth,txpool,debug --node.seq-coordinator.my-url ws://sequencer:8548 --graphql.enable --graphql.vhosts * --graphql.corsdomain *
202+
command: --conf.file /config/caff_sequencer_config.json --node.feed.output.enable --node.feed.output.port 9642 --http.api net,web3,eth,txpool,debug --node.seq-coordinator.my-url ws://sequencer:8548 --graphql.enable --graphql.vhosts * --graphql.corsdomain *
203203
depends_on:
204204
- geth
205205

scripts/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,15 +407,15 @@ function writeConfigs(argv: any) {
407407
}
408408

409409
if (argv.espresso && argv.enableEspressoFinalityNode) {
410-
sequencerConfig.execution.sequencer["enable-espresso-finality-node"] =
410+
sequencerConfig.execution.sequencer["enable-caff-node"] =
411411
true;
412-
sequencerConfig.execution.sequencer["espresso-finality-node-config"] = {
412+
sequencerConfig.execution.sequencer["caff-node-config"] = {
413413
"hotshot-url": argv.espressoUrl,
414414
"start-block": 0,
415415
namespace: 412346,
416416
};
417417
fs.writeFileSync(
418-
path.join(consts.configpath, "espresso_finality_sequencer_config.json"),
418+
path.join(consts.configpath, "caff_sequencer_config.json"),
419419
JSON.stringify(sequencerConfig)
420420
);
421421
} else {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ listen_to_sequencer_feed() {
1515

1616
./test-node.bash --espresso --latest-espresso-image --validate --tokenbridge --init-force --detach --espresso-finality-node
1717

18-
# Start the espresso finality node
19-
docker compose up -d sequencer-espresso-finality --wait --detach
18+
# Start the caff node
19+
docker compose up -d caff-node --wait --detach
2020

2121
# Sending L2 transaction
2222
./test-node.bash script send-l2 --ethamount 100 --to user_l2user --wait

0 commit comments

Comments
 (0)