mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 00:07:56 +00:00
Fix load bid failure case.
This commit is contained in:
parent
3e5c3e1e6a
commit
ce5aa0a13b
1 changed files with 3 additions and 1 deletions
|
@ -906,7 +906,9 @@ class BasicSwap(BaseApp):
|
||||||
if self.debug:
|
if self.debug:
|
||||||
self.log.error(traceback.format_exc())
|
self.log.error(traceback.format_exc())
|
||||||
try:
|
try:
|
||||||
self.deactivateBid(session, bid)
|
bid.setState(BidStates.BID_ERROR, 'Failed to activate')
|
||||||
|
offer = session.query(Offer).filter_by(offer_id=bid.offer_id).first()
|
||||||
|
self.deactivateBid(session, offer, bid)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
self.log.error('Further error deactivating: %s', str(ex))
|
self.log.error('Further error deactivating: %s', str(ex))
|
||||||
if self.debug:
|
if self.debug:
|
||||||
|
|
Loading…
Reference in a new issue