We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d224d76 commit f7573faCopy full SHA for f7573fa
1 file changed
plugin-adapter.py
@@ -560,7 +560,7 @@ async def get_block_count(currency):
560
561
socket = coins[currency]['socket']
562
563
- res = await socket.send_message("getblockcount", (), timeout=1)
+ res = await socket.send_message("getblockcount", (), timeout=2)
564
565
if res == OS_ERROR or res == OTHER_EXCEPTION:
566
return None
@@ -575,7 +575,7 @@ async def get_plugin_fees(currency):
575
576
577
578
- res = await socket.send_message("blockchain.relayfee", (), timeout=1)
+ res = await socket.send_message("blockchain.relayfee", (), timeout=2)
579
580
581
0 commit comments