error_tx_not_found message added to tx.html
parent
875a92566e
commit
9385852f9e
@ -1,8 +1,22 @@
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
{{#txs}}
|
{{#has_error}}
|
||||||
{{>tx_details}}
|
<h4 style="color:red">Attempt failed</h4>
|
||||||
{{/txs}}
|
{{#error_tx_not_found}}
|
||||||
|
<h4>Tx {{tx_hash}} not found. </h4>
|
||||||
|
<div class="center" style="text-align: center;width:80%">
|
||||||
|
<p> If this is newly made tx, it can take some time (up to minute)
|
||||||
|
for it to get propagated to all nodes' mempools.
|
||||||
|
<br/><br/>
|
||||||
|
Please refresh in 10-20 seconds to check if its here then.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{{/error_tx_not_found}}
|
||||||
|
{{/has_error}}
|
||||||
|
{{^has_error}}
|
||||||
|
{{#txs}}
|
||||||
|
{{>tx_details}}
|
||||||
|
{{/txs}}
|
||||||
|
{{/has_error}}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue