Browse Source

tweak address trust notes

fix-133-memory-crash
Dan Janosik 6 years ago
parent
commit
ccde4376a3
No known key found for this signature in database GPG Key ID: C6F8CE9FFDB2CED2
  1. 6
      views/address.pug

6
views/address.pug

@ -98,6 +98,8 @@ block content
div(class="card mb-3 shadow-sm") div(class="card mb-3 shadow-sm")
div(class="card-header") div(class="card-header")
span(class="h6") Summary span(class="h6") Summary
if (config.addressApi)
small.text-muted.border-dotted.ml-2(title=`Some details for this address were queried from ${config.addressApi}` data-toggle="tooltip") Trust Note
div(class="card-body") div(class="card-body")
div(class="row") div(class="row")
div(class="col-md-6") div(class="col-md-6")
@ -248,9 +250,9 @@ block content
if (config.addressApi) if (config.addressApi)
if (config.addressApi == "electrumx") if (config.addressApi == "electrumx")
small.text-muted.border-dotted.ml-2(title=`The list of transaction IDs for this address and the address balance were queried from ElectrumX (using the configured server(s))` data-toggle="tooltip") Trust Note small.text-muted.border-dotted.ml-2(title=`The list of transaction IDs for this address was queried from ElectrumX (using the configured server(s))` data-toggle="tooltip") Trust Note
else else
small.text-muted.border-dotted.ml-2(title=`The list of transaction IDs for this address and the address balance were queried from ${config.addressApi}` data-toggle="tooltip") Trust Note small.text-muted.border-dotted.ml-2(title=`The list of transaction IDs for this address was queried from ${config.addressApi}` data-toggle="tooltip") Trust Note
if (!crawlerBot && txids && txids.length > 1 && addressApiSupport.sortDesc && addressApiSupport.sortAsc) if (!crawlerBot && txids && txids.length > 1 && addressApiSupport.sortDesc && addressApiSupport.sortAsc)

Loading…
Cancel
Save