Skip to content

Commit

Permalink
fixed view of transactions that have not been send yet
Browse files Browse the repository at this point in the history
  • Loading branch information
sashazykov committed Jul 3, 2014
1 parent d827bb2 commit 8f0034e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/views/tips/index.html.haml
Expand Up @@ -46,5 +46,10 @@
- else
Waiting for withdrawal
- else
= link_to tip.sendmany.txid, "https://blockchain.info/tx/#{tip.sendmany.txid}", target: :blank
- if tip.sendmany.txid.present?
= link_to tip.sendmany.txid, "https://blockchain.info/tx/#{tip.sendmany.txid}", target: :blank
- else
Waiting for withdrawal
- if tip.sendmany.created_at < 10.minutes.ago
(error sending transaction)
= paginate @tips

0 comments on commit 8f0034e

Please sign in to comment.