ipld-eth-server/pkg/core/block.go

21 lines
624 B
Go
Raw Normal View History

package core
type Block struct {
Reward float64 `db:"reward"`
Difficulty int64 `db:"difficulty"`
ExtraData string `db:"extra_data"`
GasLimit uint64 `db:"gaslimit"`
GasUsed uint64 `db:"gasused"`
Hash string `db:"hash"`
IsFinal bool `db:"is_final"`
Miner string `db:"miner"`
Nonce string `db:"nonce"`
Number int64 `db:"number"`
ParentHash string `db:"parenthash"`
Size string `db:"size"`
Time int64 `db:"time"`
2017-10-31 13:58:04 +00:00
Transactions []Transaction
UncleHash string `db:"uncle_hash"`
UnclesReward float64 `db:"uncles_reward"`
}