[#424] metrics: Drop unused arg

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2023-06-13 15:03:37 +03:00
parent fb8fee0c8e
commit 71bbeddb64
2 changed files with 3 additions and 4 deletions

View file

@ -800,7 +800,7 @@ func (c *Client) getTransactionHeight(h util.Uint256) (uint32, error) {
success := false
startedAt := time.Now()
defer func() {
c.cache.metrics.AddTxHeightDuration(h, success, time.Since(startedAt))
c.cache.metrics.AddTxHeightDuration(success, time.Since(startedAt))
}()
if rh, ok := c.cache.txHeights.Get(h); ok {