diff --git a/README.md b/README.md index 763fec5..6213a80 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ There are three core files. contracts of user-defined pools on the Ethereum Network to calculate the miners' allocation's yields. The scores of miners are determined based on their relative aggregate yields, and miners which have similar allocations to other miners will be penalized if they are - not perceived as being original. If miners fail to respond in ~10 seconds after receiving the + not perceived as being original. If miners fail to respond in ~45 seconds after receiving the request they are scored poorly. The best allocating miner will receive the most emissions. For more information on how diff --git a/min_compute.yml b/min_compute.yml index fb3a228..3d01d8c 100644 --- a/min_compute.yml +++ b/min_compute.yml @@ -10,7 +10,7 @@ # Even then - storage isn't utilized very often - so disk performance won't really be a bottleneck vs, CPU, RAM, # and network bandwidth. -version: '1.5.1' # update this version key as needed, ideally should match your release version +version: '1.5.2' # update this version key as needed, ideally should match your release version compute_spec: diff --git a/sturdy/__init__.py b/sturdy/__init__.py index 185f490..38d4f3e 100644 --- a/sturdy/__init__.py +++ b/sturdy/__init__.py @@ -17,7 +17,7 @@ # DEALINGS IN THE SOFTWARE. # Define the version of the template module. -__version__ = "1.5.1" +__version__ = "1.5.2" version_split = __version__.split(".") __spec_version__ = (1000 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))