use of org.hyperledger.besu.tests.acceptance.dsl.transaction.net.NetTransactions in project besu by hyperledger.
the class ExecutionEngineAcceptanceTest method init.
@BeforeClass
public static void init() throws IOException {
cluster = new Cluster(new NetConditions(new NetTransactions()));
executionEngine = new BesuNodeFactory().createExecutionEngineGenesisNode("executionEngine", GENESIS_FILE);
cluster.start(executionEngine);
consensusClient = new OkHttpClient();
mapper = new ObjectMapper();
}
Aggregations