verify method

bool verify(
  1. String data,
  2. int nonce,
  3. BigInt target
)

Verify that a nonce for data meets the target.

Implementation

bool verify(String data, int nonce, BigInt target) =>
    hashFn(data, nonce) <= target;