use of org.ethereum.config.net.MainNetConfig in project rskj by rsksmart.
the class GitHubBlockTest method runHomestead.
private void runHomestead(String name) throws IOException, ParseException {
String json = JSONReader.loadJSONFromCommit("BlockchainTests/Homestead/" + name + ".json", shacommit);
RskSystemProperties config = new RskSystemProperties();
config.setBlockchainConfig(new GenesisConfig());
try {
GitHubJSONTestSuite.runGitHubJsonBlockTest(json, Collections.EMPTY_SET);
} finally {
config.setBlockchainConfig(new MainNetConfig());
}
}
Aggregations