core/rawdb: simplify TestDiskSeek to use memorydb (#25182)

pull/25201/head
aaronbuchwald 2 years ago committed by GitHub
parent 3f712e7447
commit 300f6121ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      core/state/snapshot/disklayer_test.go

@ -23,7 +23,6 @@ import (
"github.com/VictoriaMetrics/fastcache"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/rawdb"
"github.com/ethereum/go-ethereum/ethdb/leveldb"
"github.com/ethereum/go-ethereum/ethdb/memorydb"
"github.com/ethereum/go-ethereum/rlp"
)
@ -515,11 +514,7 @@ func TestDiskMidAccountPartialMerge(t *testing.T) {
// TestDiskSeek tests that seek-operations work on the disk layer
func TestDiskSeek(t *testing.T) {
// Create some accounts in the disk layer
diskdb, err := leveldb.New(t.TempDir(), 256, 0, "", false)
if err != nil {
t.Fatal(err)
}
db := rawdb.NewDatabase(diskdb)
db := rawdb.NewMemoryDatabase()
defer db.Close()
// Fill even keys [0,2,4...]

Loading…
Cancel
Save