mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-06 02:38:11 +01:00
Fix load bid failure case.
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user