Skip to content

Commit

Permalink
Revert "Fix use of missing self.log in blockchain.py"
Browse files Browse the repository at this point in the history
This reverts commit b06a6a2.
  • Loading branch information
codablock authored and PastaPastaPasta committed Mar 8, 2019
1 parent 0e91ebc commit bc593c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qa/rpc-tests/blockchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _test_gettxoutsetinfo(self):
assert_equal(len(res['bestblock']), 64)
assert_equal(len(res['hash_serialized_2']), 64)

print("Test that gettxoutsetinfo() works for blockchain with just the genesis block")
self.log.info("Test that gettxoutsetinfo() works for blockchain with just the genesis block")
b1hash = node.getblockhash(1)
node.invalidateblock(b1hash)

Expand All @@ -68,7 +68,7 @@ def _test_gettxoutsetinfo(self):
assert_equal(res2['bestblock'], node.getblockhash(0))
assert_equal(len(res2['hash_serialized_2']), 64)

print("Test that gettxoutsetinfo() returns the same result after invalidate/reconsider block")
self.log.info("Test that gettxoutsetinfo() returns the same result after invalidate/reconsider block")
node.reconsiderblock(b1hash)

res3 = node.gettxoutsetinfo()
Expand Down

0 comments on commit bc593c8

Please sign in to comment.