cmd/utils: fix merge-breakage in test (#28985)

pull/28989/head
Martin HS 7 months ago committed by GitHub
parent fe91d476ba
commit 55a46c3b10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      cmd/utils/history_test.go

@ -36,6 +36,7 @@ import (
"github.com/ethereum/go-ethereum/internal/era"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/trie"
"github.com/ethereum/go-ethereum/triedb"
)
var (
@ -170,7 +171,7 @@ func TestHistoryImportAndExport(t *testing.T) {
db2.Close()
})
genesis.MustCommit(db2, trie.NewDatabase(db, trie.HashDefaults))
genesis.MustCommit(db2, triedb.NewDatabase(db, triedb.HashDefaults))
imported, err := core.NewBlockChain(db2, nil, genesis, nil, ethash.NewFaker(), vm.Config{}, nil, nil)
if err != nil {
t.Fatalf("unable to initialize chain: %v", err)

Loading…
Cancel
Save