Merge pull request #286 from cryptoguard/dev

Offer page: Add info whether an offer is set to auto accept bid or not
This commit is contained in:
Gerlof van Ek
2025-04-10 21:17:29 +02:00
committed by GitHub
6 changed files with 41 additions and 8 deletions

View File

@@ -733,6 +733,9 @@ def page_offer(self, url_split, post_string):
"swap_type": strSwapDesc(offer.swap_type),
"reverse": reverse_bid,
"form_id": get_data_entry_or(form_data, "formid", "") if form_data else "",
"auto_accept_type": (
offer.auto_accept_type if hasattr(offer, "auto_accept_type") else 0
),
}
data.update(extend_data)