Browse Source

Use log.info() instead of print() in importmulti.py

0.15
John Newbery 8 years ago
parent
commit
1f7065367c
  1. 2
      qa/rpc-tests/importmulti.py

2
qa/rpc-tests/importmulti.py

@ -413,7 +413,7 @@ class ImportMultiTest (BitcoinTestFramework):
# Importing existing watch only address with new timestamp should replace saved timestamp. # Importing existing watch only address with new timestamp should replace saved timestamp.
assert_greater_than(timestamp, watchonly_timestamp) assert_greater_than(timestamp, watchonly_timestamp)
print("Should replace previously saved watch only timestamp.") self.log.info("Should replace previously saved watch only timestamp.")
result = self.nodes[1].importmulti([{ result = self.nodes[1].importmulti([{
"scriptPubKey": { "scriptPubKey": {
"address": watchonly_address, "address": watchonly_address,

Loading…
Cancel
Save