Skip to content

Commit ef1ffbd

Browse files
committed
uncomment holesky
1 parent 9564d38 commit ef1ffbd

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.env.sample.holesky

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ COMPOSE_FILE=compose-el.yml:compose-cl.yml:compose-vc.yml:compose-mev.yml:docker
5353
#RETH_VERSION=
5454

5555
# Nethermind ancient barrier allows you to specify how many old block bodies and receipts you want to store.
56-
#NETHERMIND_ANCIENT_BODIES_BARRIER=
57-
#NETHERMIND_ANCIENT_RECEIPTS_BARRIER=
56+
NETHERMIND_ANCIENT_BODIES_BARRIER=4500000
57+
NETHERMIND_ANCIENT_RECEIPTS_BARRIER=4500000
5858

5959
# History pruning (EXPERIMENTAL as of v1.33+).
6060
# History.Pruning options: Disabled (default), Rolling, UseAncientBarriers.
61-
#NETHERMIND_HISTORY_PRUNING=Rolling
62-
#NETHERMIND_HISTORY_RETENTION_EPOCHS=82125
61+
NETHERMIND_HISTORY_PRUNING=Rolling
62+
NETHERMIND_HISTORY_RETENTION_EPOCHS=82125
6363

6464
######### Consensus Layer Config #########
6565

docker-compose.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ services:
3535
--Sync.SnapSync=true
3636
--Sync.AncientBodiesBarrier=${NETHERMIND_ANCIENT_BODIES_BARRIER:-0}
3737
--Sync.AncientReceiptsBarrier=${NETHERMIND_ANCIENT_RECEIPTS_BARRIER:-0}
38-
--TxPool.BlobsSupport=Disabled
38+
--History.Pruning=${NETHERMIND_HISTORY_PRUNING:-Disabled}
39+
--History.RetentionEpochs=${NETHERMIND_HISTORY_RETENTION_EPOCHS:-82125}
3940
networks: [dvnode]
4041
volumes:
4142
- ./data/nethermind:/nethermind/data

0 commit comments

Comments
 (0)