mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Corrected spelling of Cuckoo Cycle here and there and updated easiness to 50% following @tromp feedback.
This commit is contained in:
parent
396fd58626
commit
d3e4ecc100
2 changed files with 6 additions and 3 deletions
|
@ -31,8 +31,11 @@ We believe in pull requests, data and scientific research. We do not believe in
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
Tom Elvis Jedusor for the first formulation of MimbleWimble.
|
Tom Elvis Jedusor for the first formulation of MimbleWimble.
|
||||||
|
|
||||||
Andrew Poelstra for his related work and improvements.
|
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.
|
J.K. Rowling for making it despite extraordinary adversity.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
//! verification to avoid DoS attacks and difficulty for block verifiers to
|
//! verification to avoid DoS attacks and difficulty for block verifiers to
|
||||||
//! build new blocks. In addition, mining new blocks should also be as
|
//! build new blocks. In addition, mining new blocks should also be as
|
||||||
//! difficult on high end custom-made hardware (ASICs) as on commodity hardware
|
//! 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).
|
//! module for more information).
|
||||||
//!
|
//!
|
||||||
//! Note that this miner implementation is here mostly for tests and
|
//! 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
|
/// Default Cuckoo Cycle easiness, high enough to have good likeliness to find
|
||||||
/// a solution.
|
/// a solution.
|
||||||
const EASINESS: u32 = 70;
|
const EASINESS: u32 = 50;
|
||||||
|
|
||||||
/// Max target hash, lowest difficulty
|
/// Max target hash, lowest difficulty
|
||||||
pub const MAX_TARGET: [u32; PROOFSIZE] =
|
pub const MAX_TARGET: [u32; PROOFSIZE] =
|
||||||
|
|
Loading…
Reference in a new issue