diff --git a/cmd/neofs-node/cache.go b/cmd/neofs-node/cache.go
index be4c98d59..48b8ad875 100644
--- a/cmd/neofs-node/cache.go
+++ b/cmd/neofs-node/cache.go
@@ -60,7 +60,6 @@ func (c *ttlNetCache) get(key interface{}) (interface{}, error) {
 		valWithTime := val.(*valueWithTime)
 
 		if time.Since(valWithTime.t) < c.ttl {
-			valWithTime.t = time.Now()
 			return valWithTime.v, nil
 		}