github.com/Bytom/bytom@v1.1.2-0.20210127130405-ae40204c0b09/protocol/bc/block.go (about)

     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  }