diff --git a/common/types.go b/common/types.go index a53e591383..e61a994c13 100644 --- a/common/types.go +++ b/common/types.go @@ -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 -} \ No newline at end of file +} diff --git a/params/version.go b/params/version.go index 643176a2a6..97012de143 100644 --- a/params/version.go +++ b/params/version.go @@ -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 )