Skip to content

Commit

Permalink
[FIX] Do not convert string to hex
Browse files Browse the repository at this point in the history
  • Loading branch information
mccwdev committed Oct 20, 2020
1 parent 3d976ff commit 579d1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocksmurfer/templates/explorer/_transaction_item.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<td>
{% if out.spent %}
{% if out.spending_txid %}
<a href="{{ url_for('main.transaction', network=network, txid=out.spending_txid.hex()) }}">
<a href="{{ url_for('main.transaction', network=network, txid=out.spending_txid) }}">
<i class="fa fa-arrow-right"></i>
</a>
{% else %}
Expand Down

0 comments on commit 579d1c5

Please sign in to comment.