We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b31325 commit 867d344Copy full SHA for 867d344
test/functional/blockchain.py
@@ -114,8 +114,8 @@ def _test_getdifficulty(self):
114
115
def _test_getnetworkhashps(self):
116
hashes_per_second = self.nodes[0].getnetworkhashps()
117
- # This should be 2 hashes every 10 minutes or 1/300
118
- assert abs(hashes_per_second * 300 - 1) < 0.0001
+ # This should be 2 hashes every 2.6 minutes (156 seconds) or 1/78
+ assert abs(hashes_per_second * 78 - 1) < 0.0001
119
120
if __name__ == '__main__':
121
BlockchainTest().main()
0 commit comments