Fix blockchain hook tests.

This commit is contained in:
Austin Roberts 2021-09-30 13:56:04 -05:00
parent 97c44a8fe6
commit a693104bcb

View File

@ -2,14 +2,14 @@ package core
import (
"testing"
"math/big"
"github.com/ethereum/go-ethereum/plugins"
"github.com/openrelayxyz/plugeth-utils/core"
)
func TestReorgLongHeadersHook(t *testing.T) {
invoked := false
done := plugins.HookTester("NewHead", func(b []byte, h core.Hash, logs [][]byte) {
done := plugins.HookTester("NewHead", func(b []byte, h core.Hash, logs [][]byte, td *big.Int) {
invoked = true
if b == nil {
t.Errorf("Expected block to be non-nil")