feat: Simplify bid/blind display
All checks were successful
Build Docker / Build Image (push) Successful in 1m8s
All checks were successful
Build Docker / Build Image (push) Successful in 1m8s
This commit is contained in:
@@ -298,7 +298,10 @@ def bidDomains(bids,domains, sortbyDomains=False):
|
||||
bidValue = bid['value'] / 1000000
|
||||
blind = lockup - bidValue
|
||||
|
||||
bidDisplay = f'<b>{bidValue:,.2f} HNS</b> + {blind:,.2f} HNS blind'
|
||||
if blind > 0:
|
||||
bidDisplay = f'<b>{bidValue:,.2f}</b> (+{blind:,.2f}) HNS'
|
||||
else:
|
||||
bidDisplay = f'<b>{bidValue:,.2f}</b> HNS'
|
||||
|
||||
|
||||
html += "<tr>"
|
||||
|
||||
Reference in New Issue
Block a user