forked from LBRYCommunity/lbry-sdk
fixing bug where broadcast_transaction function would not return a deferred
This commit is contained in:
parent
6f60b8b827
commit
23bf43f40c
1 changed files with 1 additions and 1 deletions
|
@ -984,7 +984,7 @@ class LBRYumWallet(Wallet):
|
||||||
d.addCallback(lambda _: claim_out)
|
d.addCallback(lambda _: claim_out)
|
||||||
return d
|
return d
|
||||||
else:
|
else:
|
||||||
return claim_out
|
return defer.succeed(claim_out)
|
||||||
|
|
||||||
def _broadcast_transaction(self, raw_tx):
|
def _broadcast_transaction(self, raw_tx):
|
||||||
def _log_tx(r):
|
def _log_tx(r):
|
||||||
|
|
Loading…
Reference in a new issue