From 64b6eca26520846c63ad02781030d50ef95ee9fc Mon Sep 17 00:00:00 2001 From: bashgnu <38274202+bashgnu@users.noreply.github.com> Date: Tue, 17 Apr 2018 06:41:08 +0800 Subject: [PATCH] Update link to latest working site. --- app/helpers/application_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index b71b2a84..e2e3b523 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -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 @@ -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