From bce3335fb335c1b82dadbe7b33ec6d848ab7aa73 Mon Sep 17 00:00:00 2001 From: Ryan Date: Tue, 9 Jan 2024 10:12:14 +0100 Subject: [PATCH] test: enabling gc --- nodebuilder/prune/constructors.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/nodebuilder/prune/constructors.go b/nodebuilder/prune/constructors.go index 8cc58aecd9..a73800ef16 100644 --- a/nodebuilder/prune/constructors.go +++ b/nodebuilder/prune/constructors.go @@ -17,7 +17,5 @@ func newPrunerService( ds datastore.Batching, opts ...pruner.Option, ) *pruner.Service { - // TODO @renaynay: remove this once pruning implementation - opts = append(opts, pruner.WithDisabledGC()) return pruner.NewService(p, window, getter, ds, p2p.BlockTime, opts...) }