Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def to_btc satoshies
end

def transaction_url(txid)
"https://peercoin.mintr.org/tx/#{txid}"
"https://abe.peercoinexplorer.net/tx/#{txid}"
end

def address_explorers
Expand All @@ -35,8 +35,8 @@ def address_explorers

def address_url(address, explorer = address_explorers.first)
case explorer
when :blockr then "http://ppc.blockr.io/address/info/#{address}"
when :mintr then "https://peercoin.mintr.org/address/#{address}"
when :blockr then "https://abe.peercoinexplorer.net/address/#{address}"
when :mintr then "https://mintr.peercoinexplorer.net/address/#{address}"
else raise "Unknown provider: #{provider.inspect}"
end
end
Expand Down