From bc14ab029ac6b09e2d2761c8cd2c5ffd5f51bd83 Mon Sep 17 00:00:00 2001 From: Ceyhun Onur Date: Tue, 14 Oct 2025 21:17:26 +0300 Subject: [PATCH 1/3] add min delay target to config.md --- plugin/evm/config/config.md | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/evm/config/config.md b/plugin/evm/config/config.md index e4b6ca6d2f..bc8df85ac5 100644 --- a/plugin/evm/config/config.md +++ b/plugin/evm/config/config.md @@ -290,4 +290,5 @@ Failing to set these options will result in errors on VM initialization. Additio |--------|------|-------------|---------| | `acceptor-queue-limit` | integer | Specifies the maximum number of blocks to queue during block acceptance before blocking on Accept. | `64` | | `gas-target` | integer | The target gas per second that this node will attempt to use when creating blocks | Parent block's target | +| `min-delay-target` | integer | The minimum delay between blocks (in milliseconds) that this node will attempt to use when creating blocks | Parent block's target | | `skip-upgrade-check` | bool | Skip checking that upgrades occur before last accepted block ⚠️ **Warning**: Only use when you understand the implications | `false` | From efd3dc445ab0696e99b241d3e6b225666fe1a8e9 Mon Sep 17 00:00:00 2001 From: Ceyhun Onur Date: Tue, 14 Oct 2025 21:19:15 +0300 Subject: [PATCH 2/3] update releases md --- RELEASES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASES.md b/RELEASES.md index 04c118cd54..1c564d6fa6 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -7,6 +7,7 @@ - ACP-226 (Granite): - Set expected block gas cost to 0 in Granite network upgrade, removing block gas cost requirements for block building. - Add `timeMilliseconds` (Unix uint64) timestamp to block header for Granite upgrade. + - Add `min-delay-target` (uint64) to node configs. - Add `minDelayExcess` (uint64) to block header for Granite upgrade. - Add minimum block building delays to conform the block builder to ACP-226 requirements. - Add minimum delay verification. From f11fc616773ccf713107c778189916a2552f9f51 Mon Sep 17 00:00:00 2001 From: Ceyhun Onur Date: Tue, 14 Oct 2025 21:19:37 +0300 Subject: [PATCH 3/3] clarify flag --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 1c564d6fa6..82a59bc81d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -7,7 +7,7 @@ - ACP-226 (Granite): - Set expected block gas cost to 0 in Granite network upgrade, removing block gas cost requirements for block building. - Add `timeMilliseconds` (Unix uint64) timestamp to block header for Granite upgrade. - - Add `min-delay-target` (uint64) to node configs. + - Add `min-delay-target` (uint64) flag to node configs. - Add `minDelayExcess` (uint64) to block header for Granite upgrade. - Add minimum block building delays to conform the block builder to ACP-226 requirements. - Add minimum delay verification.