Skip to content

Commit

Permalink
Merge pull request #5589 from onflow/jribbink/binstat-time-elapse
Browse files Browse the repository at this point in the history
Relax requirement for elapsed time during binstat init
  • Loading branch information
jribbink committed Apr 5, 2024
1 parent 39f59b1 commit 098692f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/binstat/binstat.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ func init() {
}

t2 := runtimeNanoAsTimeDuration()
if t2 <= t1 {
if t2 < t1 {
panic(fmt.Sprintf("ERROR: BINSTAT: INTERNAL: t1=%d but t2=%d\n", t1, t2))
}
}
Expand Down

0 comments on commit 098692f

Please sign in to comment.