Use pico inflation for ledger-tool capitalization --enable-inflation (#13215) (#13221)

* Use pico inflation for ledger-tool capitalization --enable-inflation

* rust fmt

(cherry picked from commit 7d2962135d)

Co-authored-by: Ryo Onodera <ryoqun@gmail.com>
This commit is contained in:
mergify[bot]
2020-10-28 20:54:56 +09:00
committed by GitHub
parent 4e7c096177
commit e29a49f107
3 changed files with 6 additions and 2 deletions

View File

@ -2002,7 +2002,7 @@ fn main() {
}
if arg_matches.is_present("enable_inflation") {
let inflation = Inflation::default();
let inflation = Inflation::pico();
println!(
"Forcing to: {:?} (was: {:?})",
inflation,

View File

@ -3831,7 +3831,7 @@ impl Bank {
let new_feature_activations = self.compute_active_feature_set(!init_finish_or_warp);
if new_feature_activations.contains(&feature_set::pico_inflation::id()) {
*self.inflation.write().unwrap() = Inflation::new_fixed(0.0001); // 0.01% inflation
*self.inflation.write().unwrap() = Inflation::pico();
self.fee_rate_governor.burn_percent = 50; // 50% fee burn
self.rent_collector.rent.burn_percent = 50; // 50% rent burn
}

View File

@ -65,6 +65,10 @@ impl Inflation {
}
}
pub fn pico() -> Self {
Self::new_fixed(0.0001) // 0.01% inflation
}
/// inflation rate at year
pub fn total(&self, year: f64) -> f64 {
assert!(year >= 0.0);