mirror of
https://github.com/PeernetOfficial/core.git
synced 2026-07-17 02:47:51 +01:00
More changes coming. Rename of organization to Peernet s.r.o. InformationRequest proper termination signal.
14 lines
293 B
Go
14 lines
293 B
Go
/*
|
|
File Name: Blockchain.go
|
|
Copyright: 2021 Peernet s.r.o.
|
|
Author: Peter Kleissner
|
|
*/
|
|
|
|
package core
|
|
|
|
// BlockchainHeight is the current count of blocks
|
|
var BlockchainHeight = uint32(0)
|
|
|
|
// BlockchainVersion is the version of the blockchain
|
|
var BlockchainVersion = uint64(0)
|