Skip to content

Commit

Permalink
Merge pull request onflow#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 authored Mar 26, 2024
2 parents d89c1c3 + 15c89f0 commit f5d8ff9
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 f5d8ff9

Please sign in to comment.