aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/govstate.go
blob: 75f77cb0d69ccc6722e40be23f654502947be7d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package types

import (
    "math/big"

    "github.com/dexon-foundation/dexon/common"
)

type GovState struct {
    BlockHash common.Hash
    Number    *big.Int
    Root      common.Hash
    Proof     [][]byte
    Storage   [][2][]byte
}