Skip to content

Commit

Permalink
chore: fix some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jun 6, 2024
1 parent 7f46bb1 commit 9951e28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/pow/PoWConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export interface IPoWConfig extends IBaseModuleConfig {
powCryptoNightParams: IPoWCryptoNightParams; // cryptonight parameters
powArgon2Params: IPoWArgon2Params; // argon2 parameters
powDifficulty: number; // number of 0-bits the scrypt hash needs to start with to be egliable for a reward
powNonceCount: number; // number of scrypt hashs to pack into a share (should be low as that just increases verification load on server side)
powNonceCount: number; // number of scrypt hashes to pack into a share (should be low as that just increases verification load on server side)
powHashrateSoftLimit: number; // maximum allowed mining hashrate (will be throttled to this rate when faster)
powHashrateHardLimit: number; // maximum allowed mining hashrate (reject shares with nonces that exceet the limit)
powHashrateHardLimit: number; // maximum allowed mining hashrate (reject shares with nonces that exceed the limit)

/* PoW-share verification
Proof of Work shares need to be verified to prevent malicious users from just sending in random numbers.
Expand Down

1 comment on commit 9951e28

@MantaNadin
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The faucet works just fine!

Please sign in to comment.