aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
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, "")
}