Skip to content

Commit

Permalink
renamed test service to prague, because the engine versions used are …
Browse files Browse the repository at this point in the history
…only available in the prague hard fork

Signed-off-by: Daniel Lehrner <daniel.lehrner@consensys.net>
  • Loading branch information
daniellehrner committed Jul 16, 2024
1 parent 59827f9 commit 123ce12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import okhttp3.Response;
import org.web3j.protocol.core.methods.response.EthBlock;

public class PostMergeAcceptanceTestService {
public class PragueAcceptanceTestService {
protected static final MediaType MEDIA_TYPE_JSON =
MediaType.parse("application/json; charset=utf-8");

Expand All @@ -42,7 +42,7 @@ public class PostMergeAcceptanceTestService {

private long blockTimeStamp = 0;

PostMergeAcceptanceTestService(final BesuNode besuNode, final EthTransactions ethTransactions) {
PragueAcceptanceTestService(final BesuNode besuNode, final EthTransactions ethTransactions) {
this.besuNode = besuNode;
this.ethTransactions = ethTransactions;
httpClient = new OkHttpClient();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ public class SetCodeTransactionAcceptanceTest extends AcceptanceTestBase {
Address.fromHexStringStrict("1a3f5c0744c80ba7a9df07f88e456acf9fa327b8"));

private BesuNode besuNode;
private PostMergeAcceptanceTestService testService;
private PragueAcceptanceTestService testService;

@BeforeEach
void setUp() throws IOException {
besuNode = besu.createExecutionEngineGenesisNode("besuNode", GENESIS_FILE);
cluster.start(besuNode);

testService = new PostMergeAcceptanceTestService(besuNode, ethTransactions);
testService = new PragueAcceptanceTestService(besuNode, ethTransactions);
}

@Test
Expand Down

0 comments on commit 123ce12

Please sign in to comment.