Skip to content

Commit af04b8d

Browse files
committed
fix #70
1 parent 48c6ff6 commit af04b8d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/coordinator/clients/execution/clientlogic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func (client *Client) checkClient() error {
6565
client.versionStr = nodeVersion
6666
client.parseClientVersion(nodeVersion)
6767

68-
// get & comare chain specs
68+
// get & compare chain specs
6969
specs, err := client.rpcClient.GetChainSpec(ctx)
7070
if err != nil {
7171
return fmt.Errorf("error while fetching specs: %v", err)

pkg/coordinator/tasks/check_consensus_forks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The `check_consensus_forks` task is designed to check for forks in the consensus
1313
The distance is measured by the number of blocks between the heads of the forked chains.
1414

1515
- **`maxForkCount`**:\
16-
The maximum number of forks that are acceptable. If the number of forks exceeds this limit, the task will coplete with a failure result.
16+
The maximum number of forks that are acceptable. If the number of forks exceeds this limit, the task will complete with a failure result.
1717

1818
### Defaults
1919

pkg/coordinator/tasks/generate_eoa_transactions/task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func (t *Task) Execute(ctx context.Context) error {
249249
t.logger.Infof("set task result to failed, %v transactions reverted unexpectedly (FailOnReject)", revertCount)
250250
t.ctx.SetResult(types.TaskResultFailure)
251251
case totalCount == 0:
252-
t.logger.Infof("set task result to failed, no tansactions sent")
252+
t.logger.Infof("set task result to failed, no transactions sent")
253253
t.ctx.SetResult(types.TaskResultFailure)
254254
}
255255

playbooks/pectra-dev/kurtosis/eip7702-txpool-invalidation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ tasks:
138138
config:
139139
tasks:
140140

141-
# delpoy eip7701 test contract & test delegate
141+
# deploy eip7701 test contract & test delegate
142142
- name: run_tasks_concurrent
143143
title: "Prepare eip7702 invalidation test contracts"
144144
config:

0 commit comments

Comments
 (0)