From a7044307f2764b4706907052ca894df5c84d64d3 Mon Sep 17 00:00:00 2001 From: Ignotus Peverell Date: Sun, 7 Jan 2018 04:21:50 +0000 Subject: [PATCH] One grin per second, fixes #569 --- core/src/consensus.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/consensus.rs b/core/src/consensus.rs index ee77b521..f3ac20e8 100644 --- a/core/src/consensus.rs +++ b/core/src/consensus.rs @@ -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 {