use of org.ethereum.config.net.AbstractNetConfig in project rskj by rsksmart.
the class GitHubStateTest method setup.
@BeforeClass
public void setup() {
// TODO remove this after Homestead launch and shacommit update with actual block number
// for this JSON test commit the Homestead block was defined as 900000
config = new RskSystemProperties();
config.setBlockchainConfig(new AbstractNetConfig() {
{
add(0, new GenesisConfig());
}
});
}
Aggregations