We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 72524f7 + 9d1a233 commit 8566f58Copy full SHA for 8566f58
1 file changed
coreV2/minter/blockchain.go
@@ -204,10 +204,10 @@ func (blockchain *Blockchain) initState() {
204
blockchain.grace = upgrades.NewGrace()
205
blockchain.grace.AddGracePeriods(upgrades.NewGracePeriod(initialHeight, initialHeight+120, true))
206
207
- //for _, v := range blockchain.UpdateVersions() {
208
- // blockchain.grace.AddGracePeriods(graceForUpdate(v.Height))
209
- // blockchain.executor = GetExecutor(v.Name)
210
- //}
+ for _, v := range blockchain.UpdateVersions() {
+ blockchain.grace.AddGracePeriods(graceForUpdate(v.Height))
+ blockchain.executor = GetExecutor(v.Name)
+ }
211
212
}
213
0 commit comments