Skip to content

Commit

Permalink
remove TestWitnessJson and change it to ExecutionWitness
Browse files Browse the repository at this point in the history
  • Loading branch information
yerke26 committed Sep 30, 2024
1 parent 38030e7 commit c49c474
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 43 deletions.
6 changes: 4 additions & 2 deletions src/Nethermind/Ethereum.Test.Base/TestBlockJson.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// SPDX-FileCopyrightText: 2022 Demerzel Solutions Limited
// SPDX-License-Identifier: LGPL-3.0-only

using System.Text.Json;
using System.Text.Json.Serialization;
using Nethermind.Core.Verkle;
using Nethermind.Serialization.Json;

namespace Ethereum.Test.Base
{
Expand All @@ -12,7 +13,8 @@ public class TestBlockJson
public TestBlockHeaderJson[]? UncleHeaders { get; set; }
public string? Rlp { get; set; }
public LegacyTransactionJson[]? Transactions { get; set; }
public TestWitnessJson? Witness { get; set; }
[JsonConverter(typeof(ExecutionWitnessConverter))]
public ExecutionWitness? Witness { get; set; }
[JsonPropertyName("expectException")]
public string? ExpectedException { get; set; }
}
Expand Down
11 changes: 0 additions & 11 deletions src/Nethermind/Ethereum.Test.Base/TestStateDiffJson.cs

This file was deleted.

20 changes: 0 additions & 20 deletions src/Nethermind/Ethereum.Test.Base/TestVerkleProofJson.cs

This file was deleted.

10 changes: 0 additions & 10 deletions src/Nethermind/Ethereum.Test.Base/TestWitnessJson.cs

This file was deleted.

0 comments on commit c49c474

Please sign in to comment.