Skip to content

Commit 35b770d

Browse files
authored
fix(consensoor): drop hardcoded --graffiti=consensoor (#1403)
## Summary - Removes the hardcoded `--graffiti=consensoor` arg from the consensoor CL launcher so blocks render with just the standard EL+CL version prefix (e.g. `EX2123COadce`), matching the style of every other client (`EX2123PRd664`, `NMd654LH98ed`, etc.). ## Why consensoor's own CLI defaults `--graffiti` to empty, expecting `build_graffiti` to emit only the prefix. The hardcoded arg here overrode that and wasted 11 of 32 graffiti bytes on every block, producing the noisy `EX2123COadce consensoor` rows visible in dora today. No other CL launcher in `src/cl/*/` injects a `--graffiti` default; consensoor shouldn't either. Operators can still set a custom graffiti via the participant config when they want one. ## Test plan - [ ] Restart kurtosis with consensoor; dora shows `EX2123COxxxx` (no trailing ` consensoor`).
1 parent cb83373 commit 35b770d

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/cl/consensoor/consensoor_launcher.star

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ def get_beacon_config(
194194
"--beacon-api-port={0}".format(BEACON_HTTP_PORT_NUM),
195195
"--metrics-port={0}".format(BEACON_METRICS_PORT_NUM),
196196
"--fee-recipient=" + constants.VALIDATING_REWARDS_ACCOUNT,
197-
"--graffiti=consensoor",
198197
]
199198

200199
if el_context != None:

0 commit comments

Comments
 (0)