mirror of
https://github.com/basicswap/basicswap.git
synced 2024-12-23 11:59:36 +00:00
Small fixes.
This commit is contained in:
parent
cf73707643
commit
3c5577c3e1
2 changed files with 11 additions and 9 deletions
|
@ -515,9 +515,11 @@ class BasicSwap():
|
||||||
self.addWatchedOutput(coin_to, bid.bid_id, bid.participate_tx.txid.hex(), bid.participate_tx.vout, BidStates.SWAP_PARTICIPATING)
|
self.addWatchedOutput(coin_to, bid.bid_id, bid.participate_tx.txid.hex(), bid.participate_tx.vout, BidStates.SWAP_PARTICIPATING)
|
||||||
|
|
||||||
if self.coin_clients[coin_from]['last_height_checked'] < 1:
|
if self.coin_clients[coin_from]['last_height_checked'] < 1:
|
||||||
self.coin_clients[coin_from]['last_height_checked'] = bid.initiate_tx.chain_height
|
if bid.initiate_tx and bid.initiate_tx.chain_height:
|
||||||
|
self.coin_clients[coin_from]['last_height_checked'] = bid.initiate_tx.chain_height
|
||||||
if self.coin_clients[coin_to]['last_height_checked'] < 1:
|
if self.coin_clients[coin_to]['last_height_checked'] < 1:
|
||||||
self.coin_clients[coin_to]['last_height_checked'] = bid.participate_tx.chain_height
|
if bid.participate_tx and bid.participate_tx.chain_height:
|
||||||
|
self.coin_clients[coin_to]['last_height_checked'] = bid.participate_tx.chain_height
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
session.close()
|
session.close()
|
||||||
|
|
|
@ -59,9 +59,9 @@ def getTxIdHex(bid, tx_type, prefix):
|
||||||
return 'Unknown Type'
|
return 'Unknown Type'
|
||||||
|
|
||||||
if not obj:
|
if not obj:
|
||||||
return None
|
return 'None'
|
||||||
if not obj.txid:
|
if not obj.txid:
|
||||||
return None
|
return 'None'
|
||||||
return obj.txid.hex() + prefix
|
return obj.txid.hex() + prefix
|
||||||
|
|
||||||
|
|
||||||
|
@ -74,10 +74,10 @@ def getTxSpendHex(bid, tx_type):
|
||||||
return 'Unknown Type'
|
return 'Unknown Type'
|
||||||
|
|
||||||
if not obj:
|
if not obj:
|
||||||
return None
|
return 'None'
|
||||||
if not obj.spend_txid:
|
if not obj.spend_txid:
|
||||||
return None
|
return 'None'
|
||||||
obj.spend_txid.hex() + ' {}'.format(obj.spend_n)
|
return obj.spend_txid.hex() + ' {}'.format(obj.spend_n)
|
||||||
|
|
||||||
|
|
||||||
def html_content_start(title, h2=None, refresh=None):
|
def html_content_start(title, h2=None, refresh=None):
|
||||||
|
@ -469,8 +469,8 @@ class HttpHandler(BaseHTTPRequestHandler):
|
||||||
if show_txns:
|
if show_txns:
|
||||||
data['initiate_tx_refund'] = 'None' if not bid.initiate_txn_refund else bid.initiate_txn_refund.hex()
|
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()
|
data['participate_tx_refund'] = 'None' if not bid.participate_txn_refund else bid.participate_txn_refund.hex()
|
||||||
data['initiate_tx_spend'] = getTxSpendHex(bid, TxTypes.ITX),
|
data['initiate_tx_spend'] = getTxSpendHex(bid, TxTypes.ITX)
|
||||||
data['participate_tx_spend'] = getTxSpendHex(bid, TxTypes.PTX),
|
data['participate_tx_spend'] = getTxSpendHex(bid, TxTypes.PTX)
|
||||||
|
|
||||||
old_states = []
|
old_states = []
|
||||||
num_states = len(bid.states) // 12
|
num_states = len(bid.states) // 12
|
||||||
|
|
Loading…
Reference in a new issue