chainsyncer

Blockchain syncer driver
Log | Files | Refs | LICENSE

commit 30c574a74ba1823c833a8d2a3fdec548bb8a59a9
parent d0c4aa567951ecb3ac5777cacb0bce053b343952
Author: nolash <dev@holbrook.no>
Date:   Wed, 29 Sep 2021 19:37:31 +0200

Change result in threadpoolhistorysyncer

Diffstat:
Mchainsyncer/driver/threadrange.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/chainsyncer/driver/threadrange.py b/chainsyncer/driver/threadrange.py @@ -76,7 +76,6 @@ class ThreadPoolRangeHistorySyncer: for sync_range in self.ranges: task = ThreadPoolRangeTask(self.src_backend, sync_range, self.chain_interface, filters=self.filters) t = self.worker_pool.apply_async(task.start_loop, (0.1,)) - print('result {}'.format(t.get())) - + logg.debug('result of worker {}: {}'.format(t, t.get())) self.worker_pool.close() self.worker_pool.join()