From 8b025eae7654748c212aa5a3d1ae247907d395af Mon Sep 17 00:00:00 2001 From: Siriron <127705750+Siriron@users.noreply.github.com> Date: Wed, 29 Apr 2026 08:30:40 +0600 Subject: [PATCH] fix: remove duplicate REJECT rule in p2p.mdx Two consecutive rules in the Block Validation section said the same thing: - `[REJECT]` if the block is on the V1 topic and has withdrawals - `[REJECT]` if the block is on the V1 topic and has a withdrawals list Removed the first (less precise) duplicate. "Has a withdrawals list" is the correct, specific phrasing. --- docs/base-chain/specs/protocol/consensus/p2p.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/base-chain/specs/protocol/consensus/p2p.mdx b/docs/base-chain/specs/protocol/consensus/p2p.mdx index 05b7df8b1..160bc19ca 100644 --- a/docs/base-chain/specs/protocol/consensus/p2p.mdx +++ b/docs/base-chain/specs/protocol/consensus/p2p.mdx @@ -278,7 +278,6 @@ An [extended-validator] checks the incoming messages as follows, in order of ope (graceful boundary for worst-case propagation and clock skew) - `[REJECT]` if the `payload.timestamp` is more than 5 seconds into the future - `[REJECT]` if the `block_hash` in the `payload` is not valid -- `[REJECT]` if the block is on the V1 topic and has withdrawals - `[REJECT]` if the block is on the V1 topic and has a withdrawals list - `[REJECT]` if the block is on a `topic >= V2` and does not have an empty withdrawals list - `[REJECT]` if the block is on a `topic <= V2` and has a blob gas-used value set