mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 18:03:00 +01:00
Bugfix: setTimeout -> setInterval
This commit is contained in:
parent
9b287336d0
commit
f1db2ccbea
@ -7,7 +7,7 @@ class Routes {
|
||||
|
||||
constructor() {
|
||||
this.createCache();
|
||||
setTimeout(this.createCache.bind(this), 600000);
|
||||
setInterval(this.createCache.bind(this), 600000);
|
||||
}
|
||||
|
||||
private async createCache() {
|
||||
|
Loading…
Reference in New Issue
Block a user