ipld-eth-server/core/block.go
2017-11-02 15:07:38 -05:00

10 lines
144 B
Go

package core
type Block struct {
Number int64
GasLimit int64
GasUsed int64
Time int64
Transactions []Transaction
}