File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
function websocketUrl ( ) {
2
2
if ( $ ( location ) . attr ( "href" ) . startsWith ( "http://localhost" ) ) {
3
- return "ws://localhost:8080 " ;
4
- } else if ( $ ( location ) . attr ( "href" ) . startsWith ( "https ://qa-dashboard " ) ) {
5
- return "wss ://qa-metrics .nymtech.net" ;
3
+ return "ws://localhost:1648 " ;
4
+ } else if ( $ ( location ) . attr ( "href" ) . startsWith ( "http ://qa-explorer " ) ) {
5
+ return "ws ://qa-explorer .nymtech.net:1648 " ;
6
6
} else {
7
- return "wss ://metrics .nymtech.net" ;
7
+ return "ws ://testnet-explorer .nymtech.net:1648 " ;
8
8
}
9
9
}
10
10
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ async fn main() {
53
53
} ) ;
54
54
55
55
tokio:: spawn ( async move {
56
- websockets:: listen ( 8080 , sender_clone) . await ;
56
+ websockets:: listen ( 1648 , sender_clone) . await ;
57
57
} ) ;
58
58
59
59
jobs:: start ( validator_base_url) . await ;
You can’t perform that action at this time.
0 commit comments