requiresPoW method

Future<bool> requiresPoW(
  1. AccountBlockTemplate transaction, {
  2. KeyPair? blockSigningKey,
})

Implementation

Future<bool> requiresPoW(AccountBlockTemplate transaction, {KeyPair? blockSigningKey}) async {
  blockSigningKey ??= defaultKeyPair;
  return BlockUtils.requiresPoW(transaction, blockSigningKey: blockSigningKey);
}