tendermint/version.go

8 lines
180 B
Go

package rpc
const Maj = "0"
const Min = "5" // refactored out of tendermint/tendermint; RPCResponse.Result is RawJSON
const Fix = "0"
const Version = Maj + "." + Min + "." + Fix