diff --git a/basicswap/__init__.py b/basicswap/__init__.py index 6d69919..4d078a3 100644 --- a/basicswap/__init__.py +++ b/basicswap/__init__.py @@ -1,3 +1,3 @@ name = "basicswap" -__version__ = "0.0.20" +__version__ = "0.0.21" diff --git a/basicswap/templates/bid_xmr.html b/basicswap/templates/bid_xmr.html index 887ec59..0d34704 100644 --- a/basicswap/templates/bid_xmr.html +++ b/basicswap/templates/bid_xmr.html @@ -60,6 +60,9 @@ {% if data.show_txns %} +{% if data.xmr_b_shared_address %} +

Shared Address: {{ data.xmr_b_shared_address }}

+{% endif %}

Transactions

diff --git a/basicswap/ui.py b/basicswap/ui.py index 04f8e91..e81f4d0 100644 --- a/basicswap/ui.py +++ b/basicswap/ui.py @@ -219,6 +219,8 @@ def describeBid(swap_client, bid, xmr_swap, offer, xmr_offer, bid_events, edit_b continue txns.append({'type': strTxType(tx_type), 'txid': tx.txid.hex()}) data['txns'] = txns + + data['xmr_b_shared_address'] = ci_to.encodeSharedAddress(xmr_swap.pkbv, xmr_swap.pkbs) if xmr_swap.pkbs else None else: data['initiate_tx_refund'] = 'None' if not bid.initiate_txn_refund else bid.initiate_txn_refund.hex() data['participate_tx_refund'] = 'None' if not bid.participate_txn_refund else bid.participate_txn_refund.hex() diff --git a/doc/release-notes.md b/doc/release-notes.md index 8c8bf57..9d8a2df 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -1,3 +1,8 @@ +0.0.21 +============== +- Raised Particl and Monero daemon versions. +- Display shared address on bid page if show more info is enabled. + 0.0.6 ==============
Tx TypeTx IDBlocks Deep