Skip to content

Commit

Permalink
rename function
Browse files Browse the repository at this point in the history
  • Loading branch information
yerke26 committed Oct 30, 2024
1 parent ef23ace commit c2617f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tools/Evm/Evm/t8n/T8NExecutor.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
// SPDX-FileCopyrightText: 2024 Demerzel Solutions Limited
// SPDX-License-Identifier: LGPL-3.0-only

using Evm.t8n.JsonTypes;

namespace Evm.t8n;

public static class T8NExecutor
{
public static void Execute(T8NCommandArguments arguments)
{
var t8nTest = T8NInputProcessor.Process(arguments);
T8NTest t8nTest = T8NInputProcessor.ProcessInputAndConvertToT8NTest(arguments);
}
}
2 changes: 1 addition & 1 deletion tools/Evm/Evm/t8n/T8NInputProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static class T8NInputProcessor
{
private static readonly TxDecoder TxDecoder = TxDecoder.Instance;

public static T8NTest Process(T8NCommandArguments arguments)
public static T8NTest ProcessInputAndConvertToT8NTest(T8NCommandArguments arguments)
{
InputData inputData = T8NInputReader.ReadInputData(arguments);

Expand Down

0 comments on commit c2617f5

Please sign in to comment.