ui: Add option to remove expired offers and bids.

This commit is contained in:
tecnovert
2023-06-06 22:03:05 +02:00
parent 1dcd750fea
commit cbb3d0ac02
8 changed files with 138 additions and 40 deletions

View File

@@ -506,3 +506,6 @@ def strSwapDesc(swap_type):
if swap_type == SwapTypes.XMR_SWAP:
return 'Adaptor Sig'
return None
inactive_states = [BidStates.SWAP_COMPLETED, BidStates.BID_ERROR, BidStates.BID_REJECTED, BidStates.SWAP_TIMEDOUT, BidStates.BID_ABANDONED]