@@ -62,6 +62,7 @@ def run_test(self):
62
62
self ._test_getnetworkhashps ()
63
63
self ._test_stopatheight ()
64
64
self ._test_waitforblockheight ()
65
+ self ._test_muhash ()
65
66
assert self .nodes [0 ].verifychain (4 , 0 )
66
67
67
68
def mine_chain (self ):
@@ -73,6 +74,10 @@ def mine_chain(self):
73
74
self .nodes [0 ].generatetoaddress (1 , address )
74
75
assert_equal (self .nodes [0 ].getblockchaininfo ()['blocks' ], 200 )
75
76
77
+ def mine_block (self ):
78
+ address = self .nodes [0 ].get_deterministic_priv_key ().address
79
+ self .nodes [0 ].generatetoaddress (1 , address )
80
+
76
81
def _test_getblockchaininfo (self ):
77
82
self .log .info ("Test getblockchaininfo" )
78
83
@@ -202,6 +207,10 @@ def _test_getchaintxstats(self):
202
207
203
208
def _test_gettxoutsetinfo (self ):
204
209
node = self .nodes [0 ]
210
+
211
+ # TODO: Without this sleep muhash result is inconsistent
212
+ import time
213
+ time .sleep (0.1 )
205
214
res = node .gettxoutsetinfo ()
206
215
207
216
assert_equal (res ['total_amount' ], Decimal ('8725.00000000' ))
@@ -231,7 +240,6 @@ def _test_gettxoutsetinfo(self):
231
240
232
241
self .log .info ("Test that gettxoutsetinfo() returns the same result after invalidate/reconsider block" )
233
242
node .reconsiderblock (b1hash )
234
-
235
243
res3 = node .gettxoutsetinfo ()
236
244
# The field 'disk_size' is non-deterministic and can thus not be
237
245
# compared between res and res3. Everything else should be the same.
@@ -331,6 +339,31 @@ def assert_waitforheight(height, timeout=2):
331
339
assert_waitforheight (current_height )
332
340
assert_waitforheight (current_height + 1 )
333
341
342
+ def _test_muhash (self ):
343
+ self .restart_node (0 )
344
+ node = self .nodes [0 ]
345
+
346
+ self .log .info ("Test that gettxoutsetinfo() muhash is unchanged when rolling back a new block" )
347
+
348
+ # Test consistency of hashing
349
+ res = node .gettxoutsetinfo ()
350
+ muhash_at_207 = res ['muhash' ]
351
+ assert (node .gettxoutsetinfo ()['muhash' ] == muhash_at_207 )
352
+
353
+ # Hash is updated with new block
354
+ self .mine_block ()
355
+ assert (node .gettxoutsetinfo ()['muhash' ] != muhash_at_207 )
356
+
357
+ # Hash is rolled back to previous block if invalidated
358
+ b208hash = node .getblockhash (208 )
359
+ node .invalidateblock (b208hash )
360
+ assert (node .gettxoutsetinfo ()['muhash' ] == muhash_at_207 )
361
+
362
+ # Hash persists restart
363
+ self .stop_node (0 )
364
+ self .start_node (0 )
365
+ assert (node .gettxoutsetinfo ()['muhash' ] == muhash_at_207 )
366
+
334
367
335
368
if __name__ == '__main__' :
336
369
BlockchainTest ().main ()
0 commit comments