diff --git a/src/policies/pow-policy.ts b/src/policies/pow-policy.ts index 0a0bbb2..93f4bc2 100644 --- a/src/policies/pow-policy.ts +++ b/src/policies/pow-policy.ts @@ -4,7 +4,7 @@ import type { Policy } from '../types.ts'; /** Policy options for `powPolicy`. */ interface POW { - /** Events will be rejected if their `id` does not contain at least this many leading `0`'s. Default: `1` */ + /** Events will be rejected if their `id` does not contain at least this many leading 0 bits. Default: `1` */ difficulty?: number; }