fix: core/rawdb: disables item compression for difficulty

This commit is contained in:
Pratik Patil 2025-05-20 14:51:07 +05:30
parent e5d5318c8b
commit 92697df6a5
No known key found for this signature in database
GPG key ID: AFDCA496554874B3

View file

@ -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},
}