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

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

* rust fmt
This commit is contained in:
Ryo Onodera 2020-10-28 15:30:39 +09:00 committed by GitHub
parent 4e0d1b1d4a
commit 7d2962135d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -3919,7 +3919,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);