1
0

migrating print() to python 3

This commit is contained in:
SomberNight
2017-09-12 17:01:55 +02:00
parent 6fda3733e4
commit 53c98ec96d
3 changed files with 5 additions and 5 deletions

View File

@@ -2,4 +2,4 @@
import util, json
peers = util.get_peers()
results = util.send_request(peers, 'blockchain.estimatefee', [2])
print json.dumps(results, indent=4)
print(json.dumps(results, indent=4))