OSDN Git Service

new repo
[bytom/vapor.git] / protocol / bc / types / bytom / block.go
1 package bytom
2
3 // Block is block struct in bc level
4 type Block struct {
5         *BlockHeader
6         ID           Hash
7         Transactions []*Tx
8 }