Skip to content

Commit

Permalink
Fix ExecutionBranchThreshold wrongly used for ExecutionCallThreshold
Browse files Browse the repository at this point in the history
  • Loading branch information
gldeng committed Oct 9, 2024
1 parent 55606bc commit 17c523c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public IExecutionObserverThreshold GetExecutionObserverThreshold(IBlockIndex blo
var branchCountObserverThreshold = GetBlockExecutedData(blockIndex, BranchCountThresholdKey)?.Value ??
SmartContractConstants.ExecutionBranchThreshold;
var callCountObserverThreshold = GetBlockExecutedData(blockIndex, CallCountThresholdKey)?.Value ??
SmartContractConstants.ExecutionBranchThreshold;
SmartContractConstants.ExecutionCallThreshold;
return new ExecutionObserverThreshold
{
ExecutionBranchThreshold = branchCountObserverThreshold,
Expand Down

0 comments on commit 17c523c

Please sign in to comment.