From 15d22b1db536d68fbcb0d08ca48376af51014003 Mon Sep 17 00:00:00 2001 From: jsvisa Date: Thu, 17 Jul 2025 23:07:30 +0800 Subject: [PATCH] fix test Signed-off-by: jsvisa --- triedb/pathdb/history_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/triedb/pathdb/history_test.go b/triedb/pathdb/history_test.go index 2928d19d74..da0f5397f8 100644 --- a/triedb/pathdb/history_test.go +++ b/triedb/pathdb/history_test.go @@ -100,12 +100,6 @@ func testEncodeDecodeHistory(t *testing.T, rawStorageKey bool) { if !compareStorages(dec.storages, obj.storages) { t.Fatal("storage data is mismatched") } - if !compareList(dec.accountList, obj.accountList) { - t.Fatal("account list is mismatched") - } - if !compareStorageList(dec.storageList, obj.storageList) { - t.Fatal("storage list is mismatched") - } } func checkHistory(t *testing.T, db ethdb.KeyValueReader, freezer ethdb.AncientReader, id uint64, root common.Hash, exist bool) {