quorum/core/types/block_test.go

20 lines
373 B
Go
Raw Normal View History

package types
2015-03-16 09:27:23 -07:00
import (
"math/big"
"testing"
"github.com/ethereum/go-ethereum/common"
)
2015-03-16 10:42:18 -07:00
// XXX Tests doesn't really do anything. This tests exists while working on the fixed size conversions
2015-03-16 09:27:23 -07:00
func TestConversion(t *testing.T) {
var (
parent common.Hash
coinbase common.Address
hash common.Hash
)
2015-03-16 10:42:18 -07:00
NewBlock(parent, coinbase, hash, big.NewInt(0), 0, "")
2015-03-16 09:27:23 -07:00
}