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