diff --git a/book/cli/reth/db/clear/static-file.md b/book/cli/reth/db/clear/static-file.md index c830af259c95..78f2b9cbceaa 100644 --- a/book/cli/reth/db/clear/static-file.md +++ b/book/cli/reth/db/clear/static-file.md @@ -14,6 +14,7 @@ Arguments: - headers: Static File segment responsible for the `CanonicalHeaders`, `Headers`, `HeaderTerminalDifficulties` tables - transactions: Static File segment responsible for the `Transactions` table - receipts: Static File segment responsible for the `Receipts` table + - block-meta: Static File segment responsible for the `BlockBodyIndices`, `BlockOmmers`, `BlockWithdrawals` tables Options: --instance diff --git a/book/cli/reth/db/get/static-file.md b/book/cli/reth/db/get/static-file.md index a50da0c0e45d..8c15191384f5 100644 --- a/book/cli/reth/db/get/static-file.md +++ b/book/cli/reth/db/get/static-file.md @@ -14,6 +14,7 @@ Arguments: - headers: Static File segment responsible for the `CanonicalHeaders`, `Headers`, `HeaderTerminalDifficulties` tables - transactions: Static File segment responsible for the `Transactions` table - receipts: Static File segment responsible for the `Receipts` table + - block-meta: Static File segment responsible for the `BlockBodyIndices`, `BlockOmmers`, `BlockWithdrawals` tables The key to get content for diff --git a/crates/static-file/types/src/segment.rs b/crates/static-file/types/src/segment.rs index 6b6b65c09f42..62192ed4e80a 100644 --- a/crates/static-file/types/src/segment.rs +++ b/crates/static-file/types/src/segment.rs @@ -35,7 +35,8 @@ pub enum StaticFileSegment { /// Static File segment responsible for the `Receipts` table. Receipts, #[strum(serialize = "block_meta")] - /// Static File segment responsible for the `Receipts` table. + /// Static File segment responsible for the `BlockBodyIndices`, `BlockOmmers`, + /// `BlockWithdrawals` tables. BlockMeta, }