fix missing space in `block_sim` output (#6134)
In #5906, the `strformat` use was replaced with simply passing the parts of the string as `varargs` to `echo`. A space got lost from output as part of the transformation. Re-add it.
This commit is contained in:
parent
2dbe24c740
commit
9ad8ea0f7a
|
@ -490,7 +490,7 @@ cli do(slots = SLOTS_PER_EPOCH * 7,
|
||||||
verifyConsensus(dag.headState, attesterRatio * blockRatio)
|
verifyConsensus(dag.headState, attesterRatio * blockRatio)
|
||||||
|
|
||||||
if t == tEpoch:
|
if t == tEpoch:
|
||||||
echo ". slot: ", shortLog(slot), "epoch: ", shortLog(slot.epoch)
|
echo ". slot: ", shortLog(slot), " epoch: ", shortLog(slot.epoch)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
write(stdout, ".")
|
write(stdout, ".")
|
||||||
|
|
Loading…
Reference in New Issue