From 6ba60e18fec27d3e3a42a71be082e255913cf4cf Mon Sep 17 00:00:00 2001 From: Evan Forbes <42654277+evan-forbes@users.noreply.github.com> Date: Wed, 3 May 2023 11:31:12 -0500 Subject: [PATCH] chore!: use updated hardfork height (#1693) ## Overview this updates the hardfork height for blockspacerace-0 ## Checklist - [x] New and updated code has appropriate documentation - [x] New and updated code has new and/or updated testing - [x] Required CI checks are passing - [x] Visual proof for any user facing features like CLI or documentation updates - [ ] Linked issues closed with keywords --- x/version/chains.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/version/chains.go b/x/version/chains.go index 0787034030..be76f6dcb1 100644 --- a/x/version/chains.go +++ b/x/version/chains.go @@ -18,7 +18,7 @@ func StandardChainVersions() map[string]ChainVersionConfig { }) bsr := NewChainVersionConfig(map[uint64]int64{ 0: 0, - 1: 674000, + 1: 446500, }) return map[string]ChainVersionConfig{ MochaChainID: version0Only,