diff options
Diffstat (limited to 'chain/helper_test.go')
-rw-r--r-- | chain/helper_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chain/helper_test.go b/chain/helper_test.go index 459e3e63a..8c7532111 100644 --- a/chain/helper_test.go +++ b/chain/helper_test.go @@ -4,6 +4,7 @@ import ( "container/list" "fmt" + "github.com/ethereum/go-ethereum/chain/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/ethutil" @@ -19,7 +20,7 @@ type TestManager struct { db ethutil.Database txPool *TxPool blockChain *ChainManager - Blocks []*Block + Blocks []*types.Block } func (s *TestManager) IsListening() bool { |