Wrote some docstrings #6

Merged
lee.miller merged 4 commits from lee.miller/MiNode:doc into v0.3 2025-02-14 04:31:36 +01:00
Showing only changes of commit efc4be0ec1 - Show all commits

View File

@ -50,5 +50,10 @@ def _worker(obj):
def do_pow_and_publish(obj):
"""
Start a worker thread, doing PoW for the given object
and putting a new object and its vector into appropriate places in `shared`
to advertize to the network.
"""
t = threading.Thread(target=_worker, args=(obj, ))
t.start()