From 1208f6b8745baa3b91ee256e37f912216d7f6bd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Urbanek?= Date: Mon, 8 Jan 2024 15:37:27 +0100 Subject: [PATCH] Update full node prune config docs (#5933) --- book/run/pruning.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/run/pruning.md b/book/run/pruning.md index a96a89147..acfb93c9c 100644 --- a/book/run/pruning.md +++ b/book/run/pruning.md @@ -78,7 +78,7 @@ Essentially, the full node is the same as following configuration for the pruned block_interval = 5 [prune.parts] -sender_recovery = { distance = 10_064 } +sender_recovery = "full" # transaction_lookup is not pruned receipts = { before = 11052984 } # Beacon Deposit Contract deployment block: https://etherscan.io/tx/0xe75fb554e433e03763a1560646ee22dcb74e5274b34c5ad644e7c0f619a7e1d0 account_history = { distance = 10_064 } @@ -92,7 +92,7 @@ storage_history = { distance = 10_064 } Meaning, it prunes: - Account History and Storage History up to the last 10064 blocks -- Sender Recovery up to the last 10064 blocks. The caveat is that it's pruned gradually after the initial sync +- All of Sender Recovery data. The caveat is that it's pruned gradually after the initial sync is completed, so the disk space is reclaimed slowly. - Receipts up to the last 10064 blocks, preserving all receipts with the logs from Beacon Deposit Contract