This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
moneroutil/block.go
2017-04-24 17:19:04 -07:00

16 lines
224 B
Go

package moneroutil
type BlockHeader struct {
majorVersion uint8
minorVersion uint8
timeStamp uint64
previousHash Hash
nonce uint32
}
type Block struct {
BlockHeader
MinerTx Transaction
TxHashes []Hash
}