aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-17 01:42:18 +0800
committerobscuren <geffobscura@gmail.com>2015-03-17 01:42:18 +0800
commit91b0b14845750c81466880f5f877fe3fcbd03b09 (patch)
treef765fe3f66891a566e836ea748747ddab31bca85 /core
parentbfcd2cf132c2f1e5c1afe6d71e3d9d9dcee5017b (diff)
downloaddexon-91b0b14845750c81466880f5f877fe3fcbd03b09.tar
dexon-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.gz
dexon-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.bz2
dexon-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.lz
dexon-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.xz
dexon-91b0b14845750c81466880f5f877fe3fcbd03b09.tar.zst
dexon-91b0b14845750c81466880f5f877fe3fcbd03b09.zip
converted vm
Diffstat (limited to 'core')
-rw-r--r--core/types/block_test.go5
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, "")
}