Browse Source
don't show "First Seen" for addresses with no confirmed tx - Fixes #86
fix-133-memory-crash
Dan Janosik
6 years ago
No known key found for this signature in database
GPG Key ID: C6F8CE9FFDB2CED2
1 changed files with
1 additions and
1 deletions
-
views/address.pug
|
|
@ -135,7 +135,7 @@ block content |
|
|
|
div(class="summary-split-table-label") Witness Program |
|
|
|
div(class="summary-split-table-content monospace") #{result.validateaddress.witness_program} |
|
|
|
|
|
|
|
if (firstSeenTransaction) |
|
|
|
if (firstSeenTransaction && firstSeenTransaction.confirmations > 0) |
|
|
|
div(class="row") |
|
|
|
div(class="summary-split-table-label") First Seen |
|
|
|
div(class="summary-split-table-content monospace") |
|
|
|