forked from LBRYCommunity/lbry-sdk
fix typo
This commit is contained in:
parent
2c8b99df76
commit
8c361aef1a
1 changed files with 1 additions and 1 deletions
|
@ -1842,7 +1842,7 @@ class Daemon(AuthJSONRPCServer):
|
||||||
if bid <= 0.0:
|
if bid <= 0.0:
|
||||||
raise Exception("Invalid bid")
|
raise Exception("Invalid bid")
|
||||||
|
|
||||||
if bid < self.session.wallet.get_balance():
|
if bid > self.session.wallet.get_balance():
|
||||||
raise InsufficientFundsError()
|
raise InsufficientFundsError()
|
||||||
|
|
||||||
metadata = metadata or {}
|
metadata = metadata or {}
|
||||||
|
|
Loading…
Reference in a new issue