You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Came up with a quick workaround on the calling method
Old
List metrics = ruleEngine.NodeDeployments.BIP9.GetThresholdStateMetrics(this.ChainState.ConsensusTip.Previous, thresholdStates);
New
List metrics = ruleEngine.NodeDeployments.BIP9.GetThresholdStateMetrics(this.ChainState.ConsensusTip.Previous ?? this.ChainState.ConsensusTip, thresholdStates);
"Base\Deployments\ThresholdConditionCache.cs" line 89
indexPrev is null when height is 0
Not an issue unless your starting fresh.
The text was updated successfully, but these errors were encountered: