aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/block_test.go
blob: 16ba3043f4c0d33e84ee51641ee5fcf56bdd3bce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package types

import (
    "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
        coinbase common.Address
        hash     common.Hash
    )

    NewBlock(parent, coinbase, hash, big.NewInt(0), 0, "")
}