add extra argument to bitcoin_rpc_manager submitblock
This commit is contained in:
parent
604e22749c
commit
041c5a0608
@ -96,10 +96,10 @@ class BitcoinRPCManager(object):
|
|||||||
except:
|
except:
|
||||||
self.next_connection()
|
self.next_connection()
|
||||||
|
|
||||||
def submitblock(self, block_hex, hash_hex):
|
def submitblock(self, block_hex, hash_hex, scrypt_hex):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
return self.conns[self.curr_conn].submitblock(block_hex, hash_hex)
|
return self.conns[self.curr_conn].submitblock(block_hex, hash_hex, scrypt_hex)
|
||||||
except:
|
except:
|
||||||
self.next_connection()
|
self.next_connection()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user