OSDN Git Service

Added blockchain struct.
[bytom/bytom.git] / protocol / bc / block.go
1 package bc
2
3 type Block struct {
4         *BlockHeader
5         ID           Hash
6         Transactions []*Tx
7 }