Skip to content

Commit dcf432f

Browse files
authored
chore: Rename to IStep (#10644)
Rename to `IStep`
1 parent f067c88 commit dcf432f

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

src/Nethermind/Nethermind.Api/Steps/IEthereumRunnerStep.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// SPDX-FileCopyrightText: 2022 Demerzel Solutions Limited
2+
// SPDX-License-Identifier: LGPL-3.0-only
3+
4+
using System.Threading;
5+
using System.Threading.Tasks;
6+
7+
namespace Nethermind.Api.Steps;
8+
9+
public interface IStep
10+
{
11+
Task Execute(CancellationToken cancellationToken);
12+
13+
public bool MustInitialize => true;
14+
}

0 commit comments

Comments
 (0)