From 72d227ae913004050f84648daed12b7dd617aa87 Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Wed, 9 Oct 2019 16:31:30 -0600 Subject: [PATCH] Bench-tps: swap consts (#6296) --- bench-tps/src/bench.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench-tps/src/bench.rs b/bench-tps/src/bench.rs index 1eb153c97d..b562800c61 100644 --- a/bench-tps/src/bench.rs +++ b/bench-tps/src/bench.rs @@ -35,7 +35,7 @@ use std::{ // The point at which transactions become "too old", in seconds. const MAX_TX_QUEUE_AGE: u64 = - MAX_PROCESSING_AGE as u64 * DEFAULT_TICKS_PER_SECOND / DEFAULT_TICKS_PER_SLOT; + MAX_PROCESSING_AGE as u64 * DEFAULT_TICKS_PER_SLOT / DEFAULT_TICKS_PER_SECOND; #[cfg(feature = "move")] use solana_librapay_api::librapay_transaction;