Skip to content

Commit 4b2cd52

Browse files
committed
address reviews
1 parent cd1c230 commit 4b2cd52

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ path = "bin/builder.rs"
2020
[dependencies]
2121
init4-bin-base = { version = "0.18.0-rc.0", features = ["perms", "aws"] }
2222

23-
signet-constants = { version = "0.16.0-rc.1" }
24-
signet-sim = { version = "0.16.0-rc.1" }
25-
signet-tx-cache = { version = "0.16.0-rc.1" }
26-
signet-types = { version = "0.16.0-rc.1" }
27-
signet-zenith = { version = "0.16.0-rc.1" }
23+
signet-constants = { version = "0.16.0-rc.0" }
24+
signet-sim = { version = "0.16.0-rc.0" }
25+
signet-tx-cache = { version = "0.16.0-rc.0" }
26+
signet-types = { version = "0.16.0-rc.0" }
27+
signet-zenith = { version = "0.16.0-rc.0" }
2828
signet-block-processor = { git = "https://github.com/init4tech/node-components", tag = "v0.16.0-rc.2" }
2929
signet-genesis = { git = "https://github.com/init4tech/node-components", tag = "v0.16.0-rc.2" }
3030

src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ pub struct BuilderConfig {
155155
)]
156156
pub max_host_gas_coefficient: Option<u8>,
157157

158-
/// Number of seconds before the end of the slot to stop querying for new blocks
158+
/// Number of milliseconds before the end of the slot to stop querying for new blocks and start the block signing and submission process.
159159
#[from_env(
160160
var = "BLOCK_QUERY_CUTOFF_BUFFER",
161-
desc = "Number of milliseconds before the end of the slot to stop querying for new transactions and start the block signing and submission process",
161+
desc = "Number of milliseconds before the end of the slot to stop querying for new transactions and start the block signing and submission process. Quincey will stop accepting signature requests 2000ms before the end of the slot, so this buffer should be no less than 2000ms to match.",
162162
default = 3000
163163
)]
164164
pub block_query_cutoff_buffer: u64,

src/tasks/block/sim.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ impl SimulatorTask {
230230
/// # Returns
231231
///
232232
/// An `Instant` representing the simulation deadline as calculated by determining
233-
/// the milliseconds left in the current slot and adding that to the current
233+
/// the milliseconds left in the current slot and adding that to the current
234234
/// timestamp in UNIX seconds.
235235
pub fn calculate_deadline(&self) -> Instant {
236236
// Get the current number of milliseconds into the slot.

0 commit comments

Comments
 (0)