From 5cd31517f8c775718722451b0a1401f7e7f307c6 Mon Sep 17 00:00:00 2001 From: ahmedbodi Date: Thu, 19 Dec 2013 13:27:18 +0000 Subject: [PATCH] typo --- lib/bitcoin_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bitcoin_rpc.py b/lib/bitcoin_rpc.py index 9151c2f..23d207f 100644 --- a/lib/bitcoin_rpc.py +++ b/lib/bitcoin_rpc.py @@ -48,7 +48,7 @@ class BitcoinRPC(object): resp = (yield self._call('submitblock', [block_hex,])) except Exception: try: - log.exception "Submit Block call failed, trying GetBlockTemplate") + log.exception("Submit Block call failed, trying GetBlockTemplate") resp = (yield self._call('getblocktemplate', [{'mode': 'submit', 'data': block_hex}])) except Exception as e: log.exception("Both SubmitBlock and GetBlockTemplate failed. Problem Submitting block %s" % str(e))