mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix #4139
This commit is contained in:
parent
c0ae266d39
commit
c79de3ab3c
1 changed files with 1 additions and 1 deletions
|
@ -563,7 +563,7 @@ class Network(util.DaemonThread):
|
||||||
self.notify('fee')
|
self.notify('fee')
|
||||||
elif method == 'blockchain.relayfee':
|
elif method == 'blockchain.relayfee':
|
||||||
if error is None:
|
if error is None:
|
||||||
self.relay_fee = int(result * COIN)
|
self.relay_fee = int(result * COIN) if result is not None else None
|
||||||
self.print_error("relayfee", self.relay_fee)
|
self.print_error("relayfee", self.relay_fee)
|
||||||
elif method == 'blockchain.block.get_chunk':
|
elif method == 'blockchain.block.get_chunk':
|
||||||
self.on_get_chunk(interface, response)
|
self.on_get_chunk(interface, response)
|
||||||
|
|
Loading…
Add table
Reference in a new issue