onion-wownero-blockchain-ex.../src/templates/pushrawtx.html

33 lines
757 B
HTML
Raw Permalink Normal View History

2016-10-14 04:31:48 +00:00
<div>
<div class="center">
2017-01-30 08:27:33 +00:00
<br/>
<h3 class="center">Transaction Pusher</h3>
2016-10-14 04:31:48 +00:00
</div>
<div class="center">
{{#txs}}
<h3>Attempting to push tx: {{tx_hash}}</h3>
{{/txs}}
{{#has_error}}
<h4 style="color:red">Attempt failed</h4>
<h4>{{error_msg}}</h4>
{{/has_error}}
{{^has_error}}
<h4 style="color:green">Success</h4>
<h4>
Your tx should be already in the txpool waiting to be included
2016-10-14 04:31:48 +00:00
in an upcoming block.
</h4>
{{#txs}}
<h4>Go to tx: <a href="/tx/{{tx_hash}}">{{tx_hash}}</a></h4>
{{/txs}}
{{/has_error}}
</div>
2017-01-30 08:33:42 +00:00
<br/>
2016-10-14 04:31:48 +00:00
</div>