Skip to content

Commit

Permalink
Updated insight link
Browse files Browse the repository at this point in the history
  • Loading branch information
dondreytaylor committed Aug 25, 2019
1 parent 4c94599 commit 9fdb8ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ var initialization = async function() {
handler: function(request, reply)
{
return new Promise(function(accept, reject) {
got("http://insight-explorer.bithereum.network/insight-api/status").then(function(response) {
got("http://insight-explorer.bithereum.network:3001/insight-api/status").then(function(response) {
try {
var data = JSON.parse(response.body);
accept(data.info.circulating);
Expand All @@ -98,7 +98,7 @@ var initialization = async function() {
handler: function(request, reply)
{
return new Promise(function(accept, reject) {
got("http://insight-explorer.bithereum.network/insight-api/status").then(function(response) {
got("http://insight-explorer.bithereum.network:3001/insight-api/status").then(function(response) {
accept(response.body);
});
});
Expand Down

0 comments on commit 9fdb8ef

Please sign in to comment.