use of org.ethereum.validator.ParentBlockHeaderValidator in project rskj by rsksmart.
the class CommonConfigTest method createParentHeaderValidator.
@Test
public void createParentHeaderValidator() {
CommonConfig config = new CommonConfig();
ParentBlockHeaderValidator result = config.parentHeaderValidator(this.config, new DifficultyCalculator(this.config));
Assert.assertNotNull(result);
}
Aggregations