Fix NovaCoin 0.4.4.7b5 getblocktemplate default behavior change, that was preventing...
[stratum-mining.git] / 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