Skip to content

Commit

Permalink
Temporary remove hertzfix check
Browse files Browse the repository at this point in the history
  • Loading branch information
blxdyx committed Jan 30, 2024
1 parent a478a85 commit 15f860c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions chain/chain_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,10 @@ func (c *Config) checkCompatible(newcfg *Config, head uint64) *ConfigCompatError
if incompatible(c.HertzBlock, newcfg.HertzBlock, head) {
return newCompatError("hertz fork block", c.HertzBlock, newcfg.HertzBlock)
}
if incompatible(c.HertzfixBlock, newcfg.HertzfixBlock, head) {
return newCompatError("hertz fork block", c.HertzfixBlock, newcfg.HertzfixBlock)
}
// TODO @Blxdyx It's temporary fix for rpc issues, will add in next commit
//if incompatible(c.HertzfixBlock, newcfg.HertzfixBlock, head) {
// return newCompatError("hertz fork block", c.HertzfixBlock, newcfg.HertzfixBlock)
//}
return nil
}

Expand Down

0 comments on commit 15f860c

Please sign in to comment.