Skip to content

Commit

Permalink
Merge branch 'dev' into slient-request-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwbabylonlab committed Jul 8, 2024
2 parents c45bbd4 + c4b010b commit 90ee823
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/stats_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ func FuzzStatsEndpointReturnHighestUnconfirmedTvlFromEvents(f *testing.F) {

overallStats = fetchOverallStatsEndpoint(t, testServer)
assert.Equal(t, &highestHeightEvent.UnconfirmedTvl, &overallStats.UnconfirmedTvl)
pendingTvl := int64(highestHeightEvent.UnconfirmedTvl) - int64(highestHeightEvent.ConfirmedTvl)
assert.Equal(t, pendingTvl, overallStats.PendingTvl)
pendingTvl := highestHeightEvent.UnconfirmedTvl - highestHeightEvent.ConfirmedTvl
assert.Equal(t, pendingTvl, overallStats.PendingTvl)
})
}

Expand Down

0 comments on commit 90ee823

Please sign in to comment.