From b3f695c83f11cae6fb46de4f6da1bdac5d52e89b Mon Sep 17 00:00:00 2001 From: Eric Williams Date: Thu, 8 Oct 2020 02:12:32 +0200 Subject: [PATCH] Inflation cli fix and parameter update (#12709) update initial inflation parameter to reflect current design --- sdk/src/inflation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/src/inflation.rs b/sdk/src/inflation.rs index 58e42fe088..937307b20a 100644 --- a/sdk/src/inflation.rs +++ b/sdk/src/inflation.rs @@ -22,7 +22,7 @@ pub struct Inflation { __unused: f64, } -const DEFAULT_INITIAL: f64 = 0.15; +const DEFAULT_INITIAL: f64 = 0.08; const DEFAULT_TERMINAL: f64 = 0.015; const DEFAULT_TAPER: f64 = 0.15; const DEFAULT_FOUNDATION: f64 = 0.05;