mirror of
https://github.com/status-im/migrate.git
synced 2025-02-23 08:18:07 +00:00
- Stop leaking tickers. As the docs state, using time.Tick() will leak tickers, so use time.NewTicker() with time.Ticker.Stop(). - Be more efficient by using time.NewTimer() with time.Timer.Stop() instead of time.After().