mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
fix: core/rawdb: disables item compression for difficulty
This commit is contained in:
parent
e5d5318c8b
commit
92697df6a5
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ var chainFreezerTableConfigs = map[string]freezerTableConfig{
|
|||
ChainFreezerHashTable: {noSnappy: true, prunable: false},
|
||||
ChainFreezerBodiesTable: {noSnappy: false, prunable: true},
|
||||
ChainFreezerReceiptTable: {noSnappy: false, prunable: true},
|
||||
ChainFreezerDifficultyTable: {noSnappy: false, prunable: true},
|
||||
ChainFreezerDifficultyTable: {noSnappy: true, prunable: true},
|
||||
freezerBorReceiptTable: {noSnappy: false, prunable: true},
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue