OSDN Git Service

try to fix ban peer bug (#273)
[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 }