Fix NovaCoin 0.4.4.7b5 getblocktemplate default behavior change, that was preventing... 2/head
authorkha0S <miguel@khore.org>
Mon, 30 Jun 2014 16:03:47 +0000 (17:03 +0100)
committerkha0S <miguel@khore.org>
Mon, 30 Jun 2014 16:03:47 +0000 (17:03 +0100)
lib/bitcoin_rpc.py

index e417fc7..cfae41f 100644 (file)
@@ -51,7 +51,7 @@ class BitcoinRPC(object):
 
     @defer.inlineCallbacks
     def getblocktemplate(self):
-        resp = (yield self._call('getblocktemplate', []))
+        resp = (yield self._call('getblocktemplate', [{}]))
         defer.returnValue(json.loads(resp)['result'])
 
     @defer.inlineCallbacks