Skip to content

Commit 28a7d03

Browse files
committed
enable abci result pruning by default
1 parent 5566c49 commit 28a7d03

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

state/pruner.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,10 @@ func (p *Pruner) OnStart() error {
119119
go p.pruneBlocks()
120120
// We only care about pruning ABCI results if the data companion has been
121121
// enabled.
122-
if p.dcEnabled {
123-
go p.pruneABCIResponses()
124-
}
122+
// TODO - in main and v1 this is enabled only if the data companion is attached
123+
// if p.dcEnabled {
124+
go p.pruneABCIResponses()
125+
//}
125126
p.observer.PrunerStarted(p.interval)
126127
return nil
127128
}

0 commit comments

Comments
 (0)