mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
Bugfix: setTimeout -> setInterval
This commit is contained in:
parent
9b287336d0
commit
f1db2ccbea
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue