update multiprocessing description

This commit is contained in:
Isaacdelly 2019-02-28 22:12:20 -08:00 committed by GitHub
parent ff32ac2478
commit ed5373ce63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ This program also utilizes multiprocessing through the `multiprocessing.Process(
It takes `0.0032457721` seconds for this progam to brute force a __single__ Bitcoin address.
However, through `multiprocessing.Pool()` a concurrent process is created for every CPU your computer has. So this program can brute force addresses at a speed of `0.0032457721 ÷ cpu_count()` seconds.
However, through `multiprocessing.Process()` a concurrent process is created for every CPU your computer has. So this program can brute force addresses at a speed of `0.0032457721 ÷ cpu_count()` seconds.
# Database FAQ