Skip to content

Commit

Permalink
fix UI endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
sponnet committed May 6, 2024
1 parent 83a3dbd commit 68ce513
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/wizard/src/NodeHealth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function NetworkID() {
const fetchNodeHealth = async () => {
setIsLoading(true);
try {
const response = await fetch('https://avalanchego.my.ava.do:9650/ext/health', {
const response = await fetch('http://avalanchego.my.ava.do:9650/ext/health', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion build/wizard/src/NodeID.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function NetworkID() {
const fetchNodeID = async () => {
setIsLoading(true);
try {
const response = await fetch('https://avalanchego.my.ava.do:9650/ext/info', {
const response = await fetch('http://avalanchego.my.ava.do:9650/ext/info', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "avalanchego.avado.dnp.dappnode.eth",
"version": "0.1.92",
"version": "0.1.93",
"upstream": "v1.11.3",
"title": "Avalanche node",
"description": "This is the Avalanche Mainnet node. Avalanche is an open-source platform for launching highly decentralized applications, new financial primitives, and new interoperable blockchains.",
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.4'
services:
avalanchego.avado.dnp.dappnode.eth:
image: 'avalanchego.avado.dnp.dappnode.eth:0.1.92'
image: 'avalanchego.avado.dnp.dappnode.eth:0.1.93'
build:
context: ./build
args:
Expand Down

0 comments on commit 68ce513

Please sign in to comment.