eliminate delay workaround post-fork
This commit is contained in:
parent
45e6adbe46
commit
fbb382d45a
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue