updated version.go

This commit is contained in:
MestryOmkar 2018-11-24 16:52:55 +05:30
parent fc9effa05d
commit dfbac0dcf2
2 changed files with 3 additions and 3 deletions

View file

@ -30,8 +30,8 @@ import (
const (
HashLength = 32
AddressLength = 20
BlockSigners = "0x0000000000000000000000000000000000000089"
MasternodeVotingSMC = "0x0000000000000000000000000000000000000088"
BlockSigners = "0x0000000000000000000000000000000000000089"
RandomizeSMC = "0x0000000000000000000000000000000000000090"
FoudationAddr = "0x0000000000000000000000000000000000000068"
TeamAddr = "0x0000000000000000000000000000000000000099"
@ -281,4 +281,4 @@ func ExtractAddressFromBytes(bytePenalties []byte) []Address {
copy(penalties[i][:], bytePenalties[i*AddressLength:])
}
return penalties
}
}

View file

@ -23,7 +23,7 @@ import (
const (
VersionMajor = 0 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 1.1 // Patch version component of the current release
VersionPatch = 1 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
)