fix: address review feedback on BaselineStrategies and Reporter

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
openhands 2026-02-27 13:43:49 +00:00
parent 77f0fd82fd
commit af86ca1226
3 changed files with 130 additions and 55 deletions

View file

@ -193,7 +193,7 @@ contract Reporter {
if (r.isHodl) {
tir = "N/A";
} else if (r.totalBlocks == 0) {
tir = "100.00%";
tir = "0.00%";
} else {
tir = _bpsStr((r.blocksInRange * 10_000) / r.totalBlocks);
}