ui: Recover noscript txn if remote key is known.

This commit is contained in:
tecnovert
2021-12-19 01:45:17 +02:00
parent 82e2b128c9
commit e502a00341
7 changed files with 67 additions and 13 deletions

View File

@@ -1007,7 +1007,8 @@ class HttpHandler(BaseHTTPRequestHandler):
elif b'edit_bid_submit' in form_data:
data = {
'bid_state': int(form_data[b'new_state'][0]),
'debug_ind': int(get_data_entry_or(form_data, 'debugind', -1))
'debug_ind': int(get_data_entry_or(form_data, 'debugind', -1)),
'kbs_other': get_data_entry_or(form_data, 'kbs_other', None),
}
try:
swap_client.manualBidUpdate(bid_id, data)