Update plutus.py

This commit is contained in:
Isaacdelly 2019-02-04 21:50:22 -08:00 committed by GitHub
parent 3309d34852
commit 09b5e15942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,6 +95,10 @@ if __name__ == '__main__':
"""
with open(DATABASE, 'rb') as file:
database = pickle.load(file)
# To verify the bloom filter configuration, remove the # from the line below
#print('Database Information: ' + repr(database))
with multiprocessing.Pool(multiprocessing.cpu_count()) as pool:
pool.map(main(database), range(multiprocessing.cpu_count() * 2))