reduces keychecker delay, really not necessary to wait so long in between each key
This commit is contained in:
parent
176a37928d
commit
b1a331bde0
|
@ -71,7 +71,7 @@ export class KeyChecker {
|
|||
{ key: uncheckedKeys[0].hash, remaining: uncheckedKeys.length - 1 },
|
||||
"Scheduling initial check for key."
|
||||
);
|
||||
this.timeout = setTimeout(() => this.checkKey(uncheckedKeys[0]), 1000);
|
||||
this.timeout = setTimeout(() => this.checkKey(uncheckedKeys[0]), 100);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue