Browse Source

tweak for display of empty tx list for address vs no electrum servers configured

fix-133-memory-crash
Dan Janosik 6 years ago
parent
commit
7f93750a62
  1. 5
      views/address.pug

5
views/address.pug

@ -220,10 +220,11 @@ block content
span The transaction history for this address was requested from mulitple ElectrumX servers and the results did not match. The results below were obtained only from span The transaction history for this address was requested from mulitple ElectrumX servers and the results did not match. The results below were obtained only from
span(class="font-weight-bold") #{electrumHistory.server} span(class="font-weight-bold") #{electrumHistory.server}
if (!transactions || transactions.length == 0)
span No transactions found
if (transactions) if (transactions)
if (transactions.length == 0)
span No transactions found
each tx, txIndex in transactions each tx, txIndex in transactions
//pre //pre
// code #{JSON.stringify(tx, null, 4)} // code #{JSON.stringify(tx, null, 4)}

Loading…
Cancel
Save