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

16 lines
224 B
Go
Raw Normal View History

2017-04-25 00:19:04 +00:00
package moneroutil
type BlockHeader struct {
majorVersion uint8
minorVersion uint8
timeStamp uint64
previousHash Hash
nonce uint32
}
type Block struct {
BlockHeader
MinerTx Transaction
TxHashes []Hash
}