Implement novacoin mining support
[stratum-mining.git] / mining / service.py
index 7bf4dce..4242542 100644 (file)
@@ -23,7 +23,7 @@ class MiningService(GenericService):
 
     @admin
     def update_block(self):
-        '''Connect this RPC call to 'bitcoind -blocknotify' for
+        '''Connect this RPC call to 'novacoind -blocknotify' for
         instant notification about new block on the network.
         See blocknotify.sh in /scripts/ for more info.'''
 
@@ -112,7 +112,7 @@ class MiningService(GenericService):
                                                  submit_time, True)
 
         if on_submit != None:
-            # Pool performs submitblock() to bitcoind. Let's hook
+            # Pool performs submitblock() to novacoind. Let's hook
             # to result and report it to share manager
             on_submit.addCallback(Interfaces.share_manager.on_submit_block,
                         worker_name, block_header, block_hash, submit_time)