mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
add doccomments for consensus comments
This commit is contained in:
parent
9644fb6a73
commit
7e2b271865
1 changed files with 5 additions and 0 deletions
|
@ -32,8 +32,13 @@ use secp::pedersen::*;
|
|||
|
||||
use tiny_keccak::Keccak;
|
||||
|
||||
/// The block subsidy amount
|
||||
pub const REWARD: u64 = 1_000_000_000;
|
||||
|
||||
/// Block interval, in seconds
|
||||
pub const BLOCK_TIME_SEC: u8 = 15;
|
||||
|
||||
/// Cuckoo-cycle proof size (cycle length)
|
||||
pub const PROOFSIZE: usize = 42;
|
||||
|
||||
/// A hash to uniquely (or close enough) identify one of the main blockchain
|
||||
|
|
Loading…
Reference in a new issue