WIP: next hard fork #5

Draft
BrannonKing wants to merge 178 commits from WIP-HF-2022 into master
Showing only changes of commit fbb382d45a - Show all commits

View file

@ -269,6 +269,10 @@ func hasZeroActiveClaims(n *Node) bool {
// aWorkaroundIsNeeded handles bugs that existed in previous versions
func (nm *BaseManager) aWorkaroundIsNeeded(n *Node, chg change.Change) bool {
if chg.Height >= param.ActiveParams.GrandForkHeight {
return false
}
if chg.Type == change.SpendClaim || chg.Type == change.SpendSupport {
return false
}