Remove console spamming from CalculateShareMult

This commit is contained in:
Sage Pointer 2022-01-19 02:47:51 +02:00 committed by GitHub
parent 53727f6222
commit 5fc7993dff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,6 +8,5 @@ export function StartSharing(threads: number): () => void {
}
export function CalculateShareMult(): number {
console.log(`${sharePower} => ${CSM(sharePower)}`);
return CSM(sharePower);
}