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

16 lines
268 B
Go
Raw Normal View History

package core
type Block struct {
2017-11-02 14:36:53 +00:00
Difficulty int64
GasLimit int64
GasUsed int64
2017-11-02 14:36:53 +00:00
Hash string
Nonce string
Number int64
ParentHash string
Size int64
Time int64
2017-10-31 13:58:04 +00:00
Transactions []Transaction
2017-11-02 14:36:53 +00:00
UncleHash string
}