powPolicy: clarify difficulty option comment

This commit is contained in:
Alex Gleason 2023-04-11 16:12:53 -05:00
parent 2d880629cc
commit 07088576eb
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

View File

@ -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;
}