Upgrade to Rust 1.41.1

This commit is contained in:
Michael Vines
2020-02-27 22:19:56 -07:00
parent 74da2de3b7
commit 7d27be2a73
6 changed files with 7 additions and 7 deletions

View File

@ -63,7 +63,7 @@ use std::{
sync::{Arc, RwLock, RwLockReadGuard},
};
pub const SECONDS_PER_YEAR: f64 = (365.25 * 24.0 * 60.0 * 60.0);
pub const SECONDS_PER_YEAR: f64 = 365.25 * 24.0 * 60.0 * 60.0;
pub const MAX_SNAPSHOT_DATA_FILE_SIZE: u64 = 32 * 1024 * 1024 * 1024; // 32 GiB
pub const MAX_LEADER_SCHEDULE_STAKES: Epoch = 5;