Corrected spelling of Cuckoo Cycle here and there and updated easiness to 50% following @tromp feedback.

This commit is contained in:
Ignotus Peverell 2016-10-21 18:02:20 -04:00
parent 396fd58626
commit d3e4ecc100
No known key found for this signature in database
GPG key ID: 99CD25F39F8F8211
2 changed files with 6 additions and 3 deletions

View file

@ -31,8 +31,11 @@ We believe in pull requests, data and scientific research. We do not believe in
## Credits
Tom Elvis Jedusor for the first formulation of MimbleWimble.
Andrew Poelstra for his related work and improvements.
John Tromp for the Cuckoo Cycles proof of work.
John Tromp for the Cuckoo Cycle proof of work.
J.K. Rowling for making it despite extraordinary adversity.
## License

View file

@ -2,7 +2,7 @@
//! verification to avoid DoS attacks and difficulty for block verifiers to
//! build new blocks. In addition, mining new blocks should also be as
//! difficult on high end custom-made hardware (ASICs) as on commodity hardware
//! or smartphones. For this reason we use Cuckoo Cycles (see the cuckoo
//! or smartphones. For this reason we use Cuckoo Cycle (see the cuckoo
//! module for more information).
//!
//! Note that this miner implementation is here mostly for tests and
@ -25,7 +25,7 @@ const SIZESHIFT: u32 = 28;
/// Default Cuckoo Cycle easiness, high enough to have good likeliness to find
/// a solution.
const EASINESS: u32 = 70;
const EASINESS: u32 = 50;
/// Max target hash, lowest difficulty
pub const MAX_TARGET: [u32; PROOFSIZE] =