From 1c9602c78585479de1e049b64385878da1d44464 Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Mon, 20 Sep 2021 10:41:02 +0700 Subject: [PATCH] revert 2421 --- kv/tables.go | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/kv/tables.go b/kv/tables.go index 0f44327ac..e48ce28c0 100644 --- a/kv/tables.go +++ b/kv/tables.go @@ -280,17 +280,10 @@ var ( //StorageModeTEVM - does not translate EVM to TEVM StorageModeTEVM = []byte("smTEVM") - PruneTypeOlder = []byte("older") - PruneTypeBefore = []byte("before") - - PruneHistory = []byte("pruneHistory") - PruneHistoryType = []byte("pruneHistoryType") - PruneReceipts = []byte("pruneReceipts") - PruneReceiptsType = []byte("pruneReceiptsType") - PruneTxIndex = []byte("pruneTxIndex") - PruneTxIndexType = []byte("pruneTxIndexType") - PruneCallTraces = []byte("pruneCallTraces") - PruneCallTracesType = []byte("pruneCallTracesType") + PruneDistanceHistory = []byte("pruneHistory") + PruneDistanceReceipts = []byte("pruneReceipts") + PruneDistanceTxIndex = []byte("pruneTxIndex") + PruneDistanceCallTraces = []byte("pruneCallTraces") DBSchemaVersionKey = []byte("dbVersion")