From 43454053b0d72a0747f4a86ceabf9d5895d3032b Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 7 Apr 2015 13:10:12 +0200 Subject: Fixed tests --- core/block_cache_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/block_cache_test.go b/core/block_cache_test.go index 434b97792..43ab847f9 100644 --- a/core/block_cache_test.go +++ b/core/block_cache_test.go @@ -11,7 +11,7 @@ import ( func newChain(size int) (chain []*types.Block) { var parentHash common.Hash for i := 0; i < size; i++ { - block := types.NewBlock(parentHash, common.Address{}, common.Hash{}, new(big.Int), 0, "") + block := types.NewBlock(parentHash, common.Address{}, common.Hash{}, new(big.Int), 0, nil) block.Header().Number = big.NewInt(int64(i)) chain = append(chain, block) parentHash = block.Hash() -- cgit v1.2.3