Add poh speed check and tick speed calibration (#14292) (#14328)

(cherry picked from commit 2074e407cd)

Co-authored-by: sakridge <sakridge@gmail.com>
This commit is contained in:
mergify[bot]
2020-12-29 19:40:49 +00:00
committed by GitHub
parent 6c5be574c8
commit abee1e83eb
5 changed files with 130 additions and 17 deletions

View File

@@ -1104,6 +1104,11 @@ pub fn main() {
.default_value("10000")
.help("Milliseconds between printing contact debug from gossip."),
)
.arg(
Arg::with_name("no_poh_speed_test")
.long("no-poh-speed-test")
.help("Skip the check for PoH speed."),
)
.arg(
Arg::with_name("accounts_hash_interval_slots")
.long("accounts-hash-slots")
@@ -1544,6 +1549,7 @@ pub fn main() {
"rpc_send_transaction_leader_forward_count",
u64
),
no_poh_speed_test: matches.is_present("no_poh_speed_test"),
..ValidatorConfig::default()
};