diff --git a/CHANGELOG.md b/CHANGELOG.md index 70912559f..b51e70512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,12 @@ Ref: https://keepachangelog.com/en/1.0.0/ # Change log +## [v7.0.0-rc0] + +### Features + +* Supports bridge call to fxCore evm contract + ## [v6.0.0] ### Features diff --git a/cmd/doctor.go b/cmd/doctor.go index a204e92ee..7e6b02e01 100644 --- a/cmd/doctor.go +++ b/cmd/doctor.go @@ -308,6 +308,8 @@ func checkBlockchainData(bc blockchain, genesisId, privValidatorKeyFile string) fmt.Printf("%sVersion: V4.2\n", SPACE) } else if blockHeight < fxtypes.TestnetBlockHeightV6 { fmt.Printf("%sVersion: V5.0\n", SPACE) + } else if blockHeight < fxtypes.TestnetBlockHeightV71 { + fmt.Printf("%sVersion: V6.0\n", SPACE) } } return plan != nil, nil diff --git a/types/version.go b/types/version.go index 0327a6301..ac75e68f0 100644 --- a/types/version.go +++ b/types/version.go @@ -33,6 +33,7 @@ const ( TestnetBlockHeightV42 = 8_481_000 TestnetBlockHeightV5 = 9_773_000 TestnetBlockHeightV6 = 11_701_000 + TestnetBlockHeightV71 = 12_961_500 ) var (