use of com.radixdlt.hotstuff.Sha256Hasher in project radixdlt by radixdlt.
the class VerifiedVertexStoreStateCreationTest method setup.
@Before
public void setup() {
this.genesisHash = HashUtils.zero256();
this.genesisVertex = new VerifiedVertex(UnverifiedVertex.createGenesis(MOCKED_HEADER), genesisHash);
this.hasher = new Sha256Hasher(DefaultSerialization.getInstance());
}
Aggregations