diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-17 01:42:18 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-17 01:42:18 +0800 |
commit | 91b0b14845750c81466880f5f877fe3fcbd03b09 (patch) | |
tree | f765fe3f66891a566e836ea748747ddab31bca85 /core | |
parent | bfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b (diff) | |
download | go-tangerine-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.gz go-tangerine-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.zst go-tangerine-91b0b14845750c81466880f5f877fe3fcbd03b09.zip |
converted vm
Diffstat (limited to 'core')
-rw-r--r-- | core/types/block_test.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/types/block_test.go b/core/types/block_test.go index e2fa2cad2..16ba3043f 100644 --- a/core/types/block_test.go +++ b/core/types/block_test.go @@ -1,13 +1,13 @@ package types import ( - "fmt" "math/big" "testing" "github.com/ethereum/go-ethereum/common" ) +// XXX Tests doesn't really do anything. This tests exists while working on the fixed size conversions func TestConversion(t *testing.T) { var ( parent common.Hash @@ -15,6 +15,5 @@ func TestConversion(t *testing.T) { hash common.Hash ) - block := NewBlock(parent, coinbase, hash, big.NewInt(0), 0, "") - fmt.Println(block) + NewBlock(parent, coinbase, hash, big.NewInt(0), 0, "") } |