mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
One grin per second, fixes #569
This commit is contained in:
parent
7e86e76787
commit
a7044307f2
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ pub const MICRO_GRIN: u64 = MILLI_GRIN / 1_000;
|
|||
/// Nanogrin, smallest unit, takes a billion to make a grin
|
||||
pub const NANO_GRIN: u64 = 1;
|
||||
|
||||
/// The block subsidy amount
|
||||
pub const REWARD: u64 = 50 * GRIN_BASE;
|
||||
/// The block subsidy amount, one grin per second on average
|
||||
pub const REWARD: u64 = 60 * GRIN_BASE;
|
||||
|
||||
/// Actual block reward for a given total fee amount
|
||||
pub fn reward(fee: u64) -> u64 {
|
||||
|
|
Loading…
Reference in a new issue