mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-23 03:49:25 +00:00
tests: Fix ci tests.
This commit is contained in:
parent
d5e35b8168
commit
3976b9c203
1 changed files with 3 additions and 1 deletions
|
@ -3850,7 +3850,7 @@ class BasicSwap(BaseApp):
|
||||||
if bid.rate != offer.rate:
|
if bid.rate != offer.rate:
|
||||||
raise AutomationConstraint('Need exact rate match')
|
raise AutomationConstraint('Need exact rate match')
|
||||||
|
|
||||||
active_bids, total_bids_value = self.getCompletedAndActiveBidsValue(offer, session)
|
active_bids, total_bids_value = self.getCompletedAndActiveBidsValue(offer, use_session)
|
||||||
|
|
||||||
if total_bids_value + bid.amount > offer.amount_from:
|
if total_bids_value + bid.amount > offer.amount_from:
|
||||||
raise AutomationConstraint('Over remaining offer value {}'.format(offer.amount_from - total_bids_value))
|
raise AutomationConstraint('Over remaining offer value {}'.format(offer.amount_from - total_bids_value))
|
||||||
|
@ -3892,6 +3892,8 @@ class BasicSwap(BaseApp):
|
||||||
return False
|
return False
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.log.error('shouldAutoAcceptBid: %s', str(e))
|
self.log.error('shouldAutoAcceptBid: %s', str(e))
|
||||||
|
if self.debug:
|
||||||
|
self.log.error(traceback.format_exc())
|
||||||
return False
|
return False
|
||||||
finally:
|
finally:
|
||||||
if session is None:
|
if session is None:
|
||||||
|
|
Loading…
Reference in a new issue