OSDN Git Service

edit code while reviewing the code (#255)
[bytom/vapor.git] / protocol / bc / block.go
1 package bc
2
3 // Block is block struct in bc level
4 type Block struct {
5         *BlockHeader
6         ID           Hash
7         Transactions []*Tx
8 }