From 09b5e15942c1f9367eb0313bdd63d137ae21bc00 Mon Sep 17 00:00:00 2001 From: Isaacdelly Date: Mon, 4 Feb 2019 21:50:22 -0800 Subject: [PATCH] Update plutus.py --- plutus.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plutus.py b/plutus.py index ff085a7..6003100 100644 --- a/plutus.py +++ b/plutus.py @@ -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))