forked from LBRYCommunity/lbry-sdk
Name and output message fix.
This commit is contained in:
parent
f5aadf3918
commit
16f2a5429b
2 changed files with 17 additions and 7 deletions
|
@ -503,7 +503,7 @@ class Wallet(object):
|
|||
log.info("Preparing to make certificate claim for %s", channel_name)
|
||||
channel_claim = yield self._claim_certificate(parsed_channel_name.name, amount)
|
||||
if not channel_claim['success']:
|
||||
msg = 'Claiming of {} failed: {}'.format(channel_name, channel_claim['reason'])
|
||||
msg = 'Claiming of channel {} failed: {}'.format(channel_name, channel_claim['reason'])
|
||||
log.error(msg)
|
||||
raise Exception(msg)
|
||||
yield self.save_claim(self._get_temp_claim_info(channel_claim, channel_name, amount))
|
||||
|
|
|
@ -1852,11 +1852,16 @@ class Daemon(AuthJSONRPCServer):
|
|||
if amount <= 0:
|
||||
raise Exception("Invalid amount")
|
||||
|
||||
amt = yield self.session.wallet.get_max_usable_balance_for_claim(channel_name)
|
||||
if amount > amt:
|
||||
balance = yield self.session.wallet.get_max_usable_balance_for_claim(channel_name)
|
||||
max_bid_amount = balance - MAX_UPDATE_FEE_ESTIMATE
|
||||
if balance <= MAX_UPDATE_FEE_ESTIMATE:
|
||||
raise InsufficientFundsError(
|
||||
"Insufficient funds, please deposit additional LBC. Minimum additional LBC needed {}"
|
||||
.format(MAX_UPDATE_FEE_ESTIMATE - balance))
|
||||
elif amount > max_bid_amount:
|
||||
raise InsufficientFundsError(
|
||||
"Please lower the bid value, the maximum amount you can specify for this claim is {}"
|
||||
.format(amt - MAX_UPDATE_FEE_ESTIMATE))
|
||||
.format(max_bid_amount))
|
||||
|
||||
result = yield self.session.wallet.claim_new_channel(channel_name, amount)
|
||||
self.analytics_manager.send_new_channel()
|
||||
|
@ -2032,11 +2037,16 @@ class Daemon(AuthJSONRPCServer):
|
|||
if bid <= 0.0:
|
||||
raise ValueError("Bid value must be greater than 0.0")
|
||||
|
||||
amt = yield self.session.wallet.get_max_usable_balance_for_claim(name)
|
||||
if bid > amt:
|
||||
balance = yield self.session.wallet.get_max_usable_balance_for_claim(name)
|
||||
max_bid_amount = balance - MAX_UPDATE_FEE_ESTIMATE
|
||||
if balance <= MAX_UPDATE_FEE_ESTIMATE:
|
||||
raise InsufficientFundsError(
|
||||
"Insufficient funds, please deposit additional LBC. Minimum additional LBC needed {}"
|
||||
.format(MAX_UPDATE_FEE_ESTIMATE - balance))
|
||||
elif bid > max_bid_amount:
|
||||
raise InsufficientFundsError(
|
||||
"Please lower the bid value, the maximum amount you can specify for this claim is {}"
|
||||
.format(amt - MAX_UPDATE_FEE_ESTIMATE))
|
||||
.format(max_bid_amount))
|
||||
|
||||
metadata = metadata or {}
|
||||
if fee is not None:
|
||||
|
|
Loading…
Reference in a new issue