diff --git a/core/services/ocr2/plugins/ccip/price_updates_cache.go b/core/services/ocr2/plugins/ccip/price_updates_cache.go index c6639ffd76..087c7c4ed2 100644 --- a/core/services/ocr2/plugins/ccip/price_updates_cache.go +++ b/core/services/ocr2/plugins/ccip/price_updates_cache.go @@ -1,9 +1,5 @@ package ccip -import ( - "time" -) - type priceUpdatesCache struct { lastUpdate update } @@ -14,14 +10,6 @@ func newPriceUpdatesCache() *priceUpdatesCache { } } -func (c *priceUpdatesCache) containsData() bool { - return c.lastUpdate.timestamp != time.Time{} -} - -func (c *priceUpdatesCache) lastCheckpoint() time.Time { - return c.lastUpdate.timestamp -} - func (c *priceUpdatesCache) get() update { return c.lastUpdate }