ui: Connected XMR wallet to rpc page.
This commit is contained in:
parent
99534756de
commit
4d3b842ea8
@ -5,6 +5,7 @@
|
|||||||
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
import json
|
||||||
import struct
|
import struct
|
||||||
import traceback
|
import traceback
|
||||||
import threading
|
import threading
|
||||||
@ -214,8 +215,16 @@ class HttpHandler(BaseHTTPRequestHandler):
|
|||||||
raise ValueError('Unknown Coin Type')
|
raise ValueError('Unknown Coin Type')
|
||||||
|
|
||||||
cmd = form_data[b'cmd'][0].decode('utf-8')
|
cmd = form_data[b'cmd'][0].decode('utf-8')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
result = cmd + '\n' + swap_client.callcoincli(coin_type, cmd)
|
if coin_type == Coins.XMR:
|
||||||
|
ci = swap_client.ci(coin_type)
|
||||||
|
arr = cmd.split(None, 1)
|
||||||
|
method = arr[0]
|
||||||
|
params = json.loads(arr[1]) if len(arr) > 1 else []
|
||||||
|
result = json.dumps(ci.rpc_wallet_cb(method, params), indent=4)
|
||||||
|
else:
|
||||||
|
result = cmd + '\n' + swap_client.callcoincli(coin_type, cmd)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
result = str(ex)
|
result = str(ex)
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
- Track failed and successful swaps by address.
|
- Track failed and successful swaps by address.
|
||||||
- Added rate lookup helper when creating offer.
|
- Added rate lookup helper when creating offer.
|
||||||
- Prevent old shutdown link from shutting down a new session.
|
- Prevent old shutdown link from shutting down a new session.
|
||||||
|
- ui: Connected XMR wallet to rpc page.
|
||||||
|
|
||||||
|
|
||||||
0.0.26
|
0.0.26
|
||||||
|
Loading…
Reference in New Issue
Block a user