reduces keychecker delay, really not necessary to wait so long in between each key

This commit is contained in:
nai-degen 2023-05-01 18:16:12 -05:00
parent 176a37928d
commit b1a331bde0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}