fix use of return in inlinecallback, change to defer.returnValue(None)
This commit is contained in:
parent
707775214a
commit
bfbecd9196
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
# automatically renew claims
|
# automatically renew claims
|
||||||
# auto renew is turned off if 0 or some negative number
|
# auto renew is turned off if 0 or some negative number
|
||||||
if self.auto_renew_claim_height_delta < 1:
|
if self.auto_renew_claim_height_delta < 1:
|
||||||
return
|
defer.returnValue(None)
|
||||||
log.debug("Renewing claim")
|
log.debug("Renewing claim")
|
||||||
h = self.session.wallet.network.get_local_height() + self.auto_renew_claim_height_delta
|
h = self.session.wallet.network.get_local_height() + self.auto_renew_claim_height_delta
|
||||||
results = yield self.session.wallet.claim_renew_all_before_expiration(h)
|
results = yield self.session.wallet.claim_renew_all_before_expiration(h)
|
||||||
|
|
Loading…
Reference in a new issue