From c15a0d3bd4edc70f0c2ab512adf81c82e944e534 Mon Sep 17 00:00:00 2001 From: Christian Ditaputratama Date: Tue, 30 Jul 2024 05:16:54 +0700 Subject: [PATCH] fix: Stagenet host Previously, the displayed stagenet host, port and key is wrong. This commit correct the stagenet subdomain host and port. --- frontend/src/routes/+page.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/routes/+page.js b/frontend/src/routes/+page.js index 7daae8c..6f639f1 100644 --- a/frontend/src/routes/+page.js +++ b/frontend/src/routes/+page.js @@ -17,9 +17,9 @@ export async function load() { { text: 'revuo-xmr.com', uri: 'https://revuo-xmr.com/' } ], stagenet: [ - { label: 'P2P', value: 'testnet.xmr.ditatompel.com:28080', key: 'tnetP2P' }, - { label: 'RPC', value: 'testnet.xmr.ditatompel.com:28089', key: 'tnetRPC' }, - { label: 'RPC SSL', value: 'testnet.xmr.ditatompel.com:443', key: 'tnetSSL' } + { label: 'P2P', value: 'stagenet.xmr.ditatompel.com:38080', key: 'snetP2P' }, + { label: 'RPC', value: 'stagenet.xmr.ditatompel.com:38089', key: 'snetRPC' }, + { label: 'RPC SSL', value: 'stagenet.xmr.ditatompel.com:443', key: 'snetSSL' } ], testnet: [ { label: 'P2P', value: 'testnet.xmr.ditatompel.com:28080', key: 'tnetP2P' },