aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/block_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/types/block_test.go')
-rw-r--r--core/types/block_test.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/core/types/block_test.go b/core/types/block_test.go
index ab1254f4c..e2fa2cad2 100644
--- a/core/types/block_test.go
+++ b/core/types/block_test.go
@@ -1 +1,20 @@
package types
+
+import (
+ "fmt"
+ "math/big"
+ "testing"
+
+ "github.com/ethereum/go-ethereum/common"
+)
+
+func TestConversion(t *testing.T) {
+ var (
+ parent common.Hash
+ coinbase common.Address
+ hash common.Hash
+ )
+
+ block := NewBlock(parent, coinbase, hash, big.NewInt(0), 0, "")
+ fmt.Println(block)
+}