ProofOfWork constructor

ProofOfWork({
  1. required BigHash hashFn,
  2. int? seed,
})

Implementation

ProofOfWork({required this.hashFn, int? seed})
  : _rand = seed != null ? Random(seed) : Random();