Skip to content

Commit

Permalink
check err
Browse files Browse the repository at this point in the history
  • Loading branch information
TAdev0 committed Sep 9, 2024
1 parent 009b556 commit 39104e4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkg/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,12 @@ func (runner *ZeroRunner) checkUsedCells() error {
}
}
}

err := runner.checkDilutedCheckUsage()
if err != nil {
return err
}

return runner.checkRangeCheckUsage()
}

Expand Down Expand Up @@ -360,7 +366,7 @@ func (runner *ZeroRunner) getPermRangeCheckLimits() (uint16, uint16) {
}

func (runner *ZeroRunner) checkDilutedCheckUsage() error {
return nil
return fmt.Errorf("check")
}

// FinalizeSegments calculates the final size of the builtins segments,
Expand Down

0 comments on commit 39104e4

Please sign in to comment.