Add fee priority setting for XMR.
This commit is contained in:
parent
31bf80f579
commit
2f47fd0d5c
@ -571,6 +571,7 @@ class BasicSwap(BaseApp):
|
|||||||
'explorers': [],
|
'explorers': [],
|
||||||
'chain_lookups': chain_client_settings.get('chain_lookups', 'local'),
|
'chain_lookups': chain_client_settings.get('chain_lookups', 'local'),
|
||||||
'restore_height': chain_client_settings.get('restore_height', 0),
|
'restore_height': chain_client_settings.get('restore_height', 0),
|
||||||
|
'fee_priority': chain_client_settings.get('fee_priority', 0),
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.coin_clients[coin]['connection_type'] == 'rpc':
|
if self.coin_clients[coin]['connection_type'] == 'rpc':
|
||||||
@ -2713,9 +2714,10 @@ class BasicSwap(BaseApp):
|
|||||||
# Have to use findTxB instead of relying on the first seen height to detect chain reorgs
|
# Have to use findTxB instead of relying on the first seen height to detect chain reorgs
|
||||||
found_tx = ci_to.findTxB(xmr_swap.vkbv, xmr_swap.pkbs, bid.amount_to, ci_to.blocks_confirmed, xmr_swap.b_restore_height)
|
found_tx = ci_to.findTxB(xmr_swap.vkbv, xmr_swap.pkbs, bid.amount_to, ci_to.blocks_confirmed, xmr_swap.b_restore_height)
|
||||||
if found_tx is not None:
|
if found_tx is not None:
|
||||||
|
if bid.xmr_b_lock_tx is None or not bid.xmr_b_lock_tx.chain_height:
|
||||||
|
self.logBidEvent(bid, EventLogTypes.LOCK_TX_B_SEEN, '', session)
|
||||||
if bid.xmr_b_lock_tx is None:
|
if bid.xmr_b_lock_tx is None:
|
||||||
self.log.debug('Found {} lock tx in chain'.format(ci_to.coin_name()))
|
self.log.debug('Found {} lock tx in chain'.format(ci_to.coin_name()))
|
||||||
self.logBidEvent(bid, EventLogTypes.LOCK_TX_B_SEEN, '', session)
|
|
||||||
b_lock_tx_id = bytes.fromhex(found_tx['txid'])
|
b_lock_tx_id = bytes.fromhex(found_tx['txid'])
|
||||||
bid.xmr_b_lock_tx = SwapTx(
|
bid.xmr_b_lock_tx = SwapTx(
|
||||||
bid_id=bid_id,
|
bid_id=bid_id,
|
||||||
@ -4509,21 +4511,36 @@ class BasicSwap(BaseApp):
|
|||||||
|
|
||||||
def editSettings(self, coin_name, data):
|
def editSettings(self, coin_name, data):
|
||||||
self.log.info('Updating settings %s', coin_name)
|
self.log.info('Updating settings %s', coin_name)
|
||||||
self.mxDB.acquire()
|
with self.mxDB:
|
||||||
try:
|
settings_changed = False
|
||||||
if 'lookups' in data:
|
if 'lookups' in data:
|
||||||
self.settings['chainclients'][coin_name]['chain_lookups'] = data['lookups']
|
if self.settings['chainclients'][coin_name].get('chain_lookups', 'local') != data['lookups']:
|
||||||
|
settings_changed = True
|
||||||
|
self.settings['chainclients'][coin_name]['chain_lookups'] = data['lookups']
|
||||||
|
for coin, cc in self.coin_clients.items():
|
||||||
|
if cc['name'] == coin_name:
|
||||||
|
cc['chain_lookups'] = data['lookups']
|
||||||
|
break
|
||||||
|
|
||||||
|
if 'fee_priority' in data:
|
||||||
|
new_fee_priority = data['fee_priority']
|
||||||
|
assert(new_fee_priority >= 0 and new_fee_priority < 4), 'Invalid priority'
|
||||||
|
|
||||||
|
if self.settings['chainclients'][coin_name].get('fee_priority', 0) != data['fee_priority']:
|
||||||
|
settings_changed = True
|
||||||
|
self.settings['chainclients'][coin_name]['fee_priority'] = data['fee_priority']
|
||||||
|
for coin, cc in self.coin_clients.items():
|
||||||
|
if cc['name'] == coin_name:
|
||||||
|
cc['fee_priority'] = data['fee_priority']
|
||||||
|
break
|
||||||
|
self.ci(Coins.XMR).setFeePriority(data['fee_priority'])
|
||||||
|
|
||||||
|
if settings_changed:
|
||||||
settings_path = os.path.join(self.data_dir, cfg.CONFIG_FILENAME)
|
settings_path = os.path.join(self.data_dir, cfg.CONFIG_FILENAME)
|
||||||
shutil.copyfile(settings_path, settings_path + '.last')
|
shutil.copyfile(settings_path, settings_path + '.last')
|
||||||
with open(settings_path, 'w') as fp:
|
with open(settings_path, 'w') as fp:
|
||||||
json.dump(self.settings, fp, indent=4)
|
json.dump(self.settings, fp, indent=4)
|
||||||
|
|
||||||
for c in self.coin_clients:
|
|
||||||
if c['name'] == coin_name:
|
|
||||||
c['chain_lookups'] = data['lookups']
|
|
||||||
finally:
|
|
||||||
self.mxDB.release()
|
|
||||||
|
|
||||||
def getSummary(self, opts=None):
|
def getSummary(self, opts=None):
|
||||||
num_watched_outputs = 0
|
num_watched_outputs = 0
|
||||||
for c, v in self.coin_clients.items():
|
for c, v in self.coin_clients.items():
|
||||||
|
@ -284,6 +284,9 @@ class HttpHandler(BaseHTTPRequestHandler):
|
|||||||
for name, c in swap_client.settings['chainclients'].items():
|
for name, c in swap_client.settings['chainclients'].items():
|
||||||
if bytes('apply_' + name, 'utf-8') in form_data:
|
if bytes('apply_' + name, 'utf-8') in form_data:
|
||||||
data = {'lookups': form_data[bytes('lookups_' + name, 'utf-8')][0].decode('utf-8')}
|
data = {'lookups': form_data[bytes('lookups_' + name, 'utf-8')][0].decode('utf-8')}
|
||||||
|
if name == 'monero':
|
||||||
|
data['fee_priority'] = int(form_data[bytes('fee_priority_' + name, 'utf-8')][0])
|
||||||
|
|
||||||
swap_client.editSettings(name, data)
|
swap_client.editSettings(name, data)
|
||||||
chains_formatted = []
|
chains_formatted = []
|
||||||
|
|
||||||
@ -292,6 +295,8 @@ class HttpHandler(BaseHTTPRequestHandler):
|
|||||||
'name': name,
|
'name': name,
|
||||||
'lookups': c.get('chain_lookups', 'local')
|
'lookups': c.get('chain_lookups', 'local')
|
||||||
})
|
})
|
||||||
|
if name == 'monero':
|
||||||
|
chains_formatted[-1]['fee_priority'] = c.get('fee_priority', 0)
|
||||||
|
|
||||||
template = env.get_template('settings.html')
|
template = env.get_template('settings.html')
|
||||||
return bytes(template.render(
|
return bytes(template.render(
|
||||||
|
@ -64,6 +64,10 @@ class XMRInterface(CoinInterface):
|
|||||||
self._network = network
|
self._network = network
|
||||||
self.blocks_confirmed = coin_settings['blocks_confirmed']
|
self.blocks_confirmed = coin_settings['blocks_confirmed']
|
||||||
self._restore_height = coin_settings.get('restore_height', 0)
|
self._restore_height = coin_settings.get('restore_height', 0)
|
||||||
|
self._fee_priority = coin_settings.get('fee_priority', 0)
|
||||||
|
|
||||||
|
def setFeePriority(self, new_priority):
|
||||||
|
self._fee_priority = new_priority
|
||||||
|
|
||||||
def setWalletFilename(self, wallet_filename):
|
def setWalletFilename(self, wallet_filename):
|
||||||
self._wallet_filename = wallet_filename
|
self._wallet_filename = wallet_filename
|
||||||
@ -191,8 +195,9 @@ class XMRInterface(CoinInterface):
|
|||||||
|
|
||||||
shared_addr = xmr_util.encode_address(Kbv, Kbs)
|
shared_addr = xmr_util.encode_address(Kbv, Kbs)
|
||||||
|
|
||||||
# TODO: How to set feerate?
|
|
||||||
params = {'destinations': [{'amount': output_amount, 'address': shared_addr}]}
|
params = {'destinations': [{'amount': output_amount, 'address': shared_addr}]}
|
||||||
|
if self._fee_priority > 0:
|
||||||
|
params['priority'] = self._fee_priority
|
||||||
rv = self.rpc_wallet_cb('transfer', params)
|
rv = self.rpc_wallet_cb('transfer', params)
|
||||||
logging.info('publishBLockTx %s to address_b58 %s', rv['tx_hash'], shared_addr)
|
logging.info('publishBLockTx %s to address_b58 %s', rv['tx_hash'], shared_addr)
|
||||||
tx_hash = bytes.fromhex(rv['tx_hash'])
|
tx_hash = bytes.fromhex(rv['tx_hash'])
|
||||||
@ -382,38 +387,19 @@ class XMRInterface(CoinInterface):
|
|||||||
raise ValueError('Invalid unlocked_balance')
|
raise ValueError('Invalid unlocked_balance')
|
||||||
|
|
||||||
params = {'address': address_to}
|
params = {'address': address_to}
|
||||||
|
if self._fee_priority > 0:
|
||||||
|
params['priority'] = self._fee_priority
|
||||||
rv = self.rpc_wallet_cb('sweep_all', params)
|
rv = self.rpc_wallet_cb('sweep_all', params)
|
||||||
print('sweep_all', rv)
|
print('sweep_all', rv)
|
||||||
|
|
||||||
return bytes.fromhex(rv['tx_hash_list'][0])
|
return bytes.fromhex(rv['tx_hash_list'][0])
|
||||||
|
|
||||||
"""
|
|
||||||
# TODO: need a subfee from output option
|
|
||||||
# b_fee = b_fee_rate * 10 # Guess
|
|
||||||
b_fee = b_fee_rate
|
|
||||||
|
|
||||||
num_tries = 20
|
|
||||||
for i in range(1 + num_tries):
|
|
||||||
try:
|
|
||||||
params = {'destinations': [{'amount': cb_swap_value - b_fee, 'address': address_to}]}
|
|
||||||
logging.debug('params', dumpj(params))
|
|
||||||
rv = self.rpc_wallet_cb('transfer', params)
|
|
||||||
print('transfer', rv)
|
|
||||||
break
|
|
||||||
except Exception as e:
|
|
||||||
print('str(e)', str(e))
|
|
||||||
if i >= num_tries:
|
|
||||||
raise ValueError('transfer failed.')
|
|
||||||
b_fee += b_fee_rate
|
|
||||||
logging.info('Raising fee to %d', b_fee)
|
|
||||||
|
|
||||||
return bytes.fromhex(rv['tx_hash'])
|
|
||||||
"""
|
|
||||||
|
|
||||||
def withdrawCoin(self, value, addr_to, subfee):
|
def withdrawCoin(self, value, addr_to, subfee):
|
||||||
self.rpc_wallet_cb('open_wallet', {'filename': self._wallet_filename})
|
self.rpc_wallet_cb('open_wallet', {'filename': self._wallet_filename})
|
||||||
|
|
||||||
value_sats = make_int(value, self.exp())
|
value_sats = make_int(value, self.exp())
|
||||||
params = {'destinations': [{'amount': value_sats, 'address': addr_to}]}
|
params = {'destinations': [{'amount': value_sats, 'address': addr_to}]}
|
||||||
|
if self._fee_priority > 0:
|
||||||
|
params['priority'] = self._fee_priority
|
||||||
rv = self.rpc_wallet_cb('transfer', params)
|
rv = self.rpc_wallet_cb('transfer', params)
|
||||||
return rv['tx_hash']
|
return rv['tx_hash']
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
node1 send_ping - With a version field
|
node1 send_ping - With a version field
|
||||||
node0 recv_ping
|
node0 recv_ping
|
||||||
Both nodes are initialised
|
Both nodes are initialised
|
||||||
|
|
||||||
|
XChaCha20_Poly1305 mac is 16bytes
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import time
|
import time
|
||||||
@ -33,7 +35,7 @@ from enum import IntEnum, auto
|
|||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from Crypto.Cipher import ChaCha20_Poly1305 # TODO: Add to libsecp256k1/coincurve fork
|
from Crypto.Cipher import ChaCha20_Poly1305 # TODO: Add to libsecp256k1/coincurve fork
|
||||||
from coincurve.keys import PrivateKey, PublicKey
|
from coincurve.keys import PrivateKey, PublicKey
|
||||||
from basicswap.rfc6979 import (
|
from basicswap.contrib.rfc6979 import (
|
||||||
rfc6979_hmac_sha256_initialize,
|
rfc6979_hmac_sha256_initialize,
|
||||||
rfc6979_hmac_sha256_generate)
|
rfc6979_hmac_sha256_generate)
|
||||||
|
|
||||||
@ -55,6 +57,7 @@ class NetMessageTypes(IntEnum):
|
|||||||
PING = auto()
|
PING = auto()
|
||||||
PONG = auto()
|
PONG = auto()
|
||||||
DATA = auto()
|
DATA = auto()
|
||||||
|
ONION_PACKET = auto()
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def has_value(cls, value):
|
def has_value(cls, value):
|
||||||
@ -580,8 +583,6 @@ class Network:
|
|||||||
def test_onion(self, path):
|
def test_onion(self, path):
|
||||||
self._sc.log.debug('test_onion packet')
|
self._sc.log.debug('test_onion packet')
|
||||||
|
|
||||||
plaintext = 'test'
|
|
||||||
|
|
||||||
def get_info(self):
|
def get_info(self):
|
||||||
rv = {}
|
rv = {}
|
||||||
|
|
||||||
|
@ -9,13 +9,22 @@
|
|||||||
<form method="post">
|
<form method="post">
|
||||||
|
|
||||||
{% for c in chains %}
|
{% for c in chains %}
|
||||||
<h4>{{ c.name }}</h4>
|
<h4>{{ c.name|capitalize }}</h4>
|
||||||
<table>
|
<table>
|
||||||
<tr><td>Chain Lookups</td><td>
|
<tr><td>Chain Lookups</td><td>
|
||||||
<select name="lookups_{{ c.name }}">
|
<select name="lookups_{{ c.name }}">
|
||||||
<option value="local"{% if c.lookups=='local' %} selected{% endif %}>Local Node</option>
|
<option value="local"{% if c.lookups=='local' %} selected{% endif %}>Local Node</option>
|
||||||
<option value="explorer"{% if c.lookups=='explorer' %} selected{% endif %}>Explorer</option>
|
<option value="explorer"{% if c.lookups=='explorer' %} selected{% endif %}>Explorer</option>
|
||||||
</select></td></tr>
|
</select></td></tr>
|
||||||
|
{% if c.name == 'monero' %}
|
||||||
|
<tr><td>Transaction Fee Priority</td><td>
|
||||||
|
<select name="fee_priority_{{ c.name }}">
|
||||||
|
<option value="0"{% if c.fee_priority==0 %} selected{% endif %}>Default</option>
|
||||||
|
<option value="1"{% if c.fee_priority==1 %} selected{% endif %}>Low</option>
|
||||||
|
<option value="2"{% if c.fee_priority==2 %} selected{% endif %}>Medium</option>
|
||||||
|
<option value="3"{% if c.fee_priority==3 %} selected{% endif %}>High</option>
|
||||||
|
</select></td></tr>
|
||||||
|
{% endif %}
|
||||||
<tr><td><input type="submit" name="apply_{{ c.name }}" value="Apply"></td></tr>
|
<tr><td><input type="submit" name="apply_{{ c.name }}" value="Apply"></td></tr>
|
||||||
</table>
|
</table>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@ -24,4 +33,4 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
<p><a href="/">home</a></p>
|
<p><a href="/">home</a></p>
|
||||||
</body></html>
|
</body></html>
|
||||||
|
@ -326,7 +326,7 @@ class Test(unittest.TestCase):
|
|||||||
print(dumpj(js_n0))
|
print(dumpj(js_n0))
|
||||||
|
|
||||||
path = [swap_clients[0]._network._network_pubkey, swap_clients[2]._network._network_pubkey]
|
path = [swap_clients[0]._network._network_pubkey, swap_clients[2]._network._network_pubkey]
|
||||||
swap_clients[1].test_onion(path)
|
swap_clients[1]._network.test_onion(path)
|
||||||
|
|
||||||
delay_for(delay_event, 1000)
|
delay_for(delay_event, 1000)
|
||||||
|
|
||||||
|
@ -548,6 +548,8 @@ class Test(unittest.TestCase):
|
|||||||
offers = swap_clients[1].listOffers(filters={'offer_id': offer_id})
|
offers = swap_clients[1].listOffers(filters={'offer_id': offer_id})
|
||||||
offer = offers[0]
|
offer = offers[0]
|
||||||
|
|
||||||
|
swap_clients[1].ci(Coins.XMR).setFeePriority(3)
|
||||||
|
|
||||||
bid_id = swap_clients[1].postXmrBid(offer_id, offer.amount_from)
|
bid_id = swap_clients[1].postXmrBid(offer_id, offer.amount_from)
|
||||||
|
|
||||||
wait_for_bid(delay_event, swap_clients[0], bid_id, BidStates.BID_RECEIVED)
|
wait_for_bid(delay_event, swap_clients[0], bid_id, BidStates.BID_RECEIVED)
|
||||||
@ -560,6 +562,8 @@ class Test(unittest.TestCase):
|
|||||||
wait_for_bid(delay_event, swap_clients[0], bid_id, BidStates.SWAP_COMPLETED, wait_for=180)
|
wait_for_bid(delay_event, swap_clients[0], bid_id, BidStates.SWAP_COMPLETED, wait_for=180)
|
||||||
wait_for_bid(delay_event, swap_clients[1], bid_id, BidStates.SWAP_COMPLETED, sent=True)
|
wait_for_bid(delay_event, swap_clients[1], bid_id, BidStates.SWAP_COMPLETED, sent=True)
|
||||||
|
|
||||||
|
swap_clients[1].ci(Coins.XMR).setFeePriority(0)
|
||||||
|
|
||||||
def test_06_multiple_swaps(self):
|
def test_06_multiple_swaps(self):
|
||||||
logging.info('---------- Test Multiple concurrent swaps')
|
logging.info('---------- Test Multiple concurrent swaps')
|
||||||
swap_clients = self.swap_clients
|
swap_clients = self.swap_clients
|
||||||
|
Loading…
Reference in New Issue
Block a user