mirror of
https://github.com/mempool/mempool.git
synced 2025-09-25 20:57:34 +02:00
Bugfix: setTimeout -> setInterval
This commit is contained in:
@@ -7,7 +7,7 @@ class Routes {
|
||||
|
||||
constructor() {
|
||||
this.createCache();
|
||||
setTimeout(this.createCache.bind(this), 600000);
|
||||
setInterval(this.createCache.bind(this), 600000);
|
||||
}
|
||||
|
||||
private async createCache() {
|
||||
|
Reference in New Issue
Block a user