Skip to content

Commit 22713af

Browse files
authored
fix(pyth-lazer-agent) Fix the jRPC path (#2870)
1 parent af5d5f8 commit 22713af

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/pyth-lazer-agent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyth-lazer-agent"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2024"
55

66
[dependencies]

apps/pyth-lazer-agent/src/http_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub struct RelayerRequest(pub http::Request<Incoming>);
3333

3434
const PUBLISHER_WS_URI_V1: &str = "/v1/publisher";
3535
const PUBLISHER_WS_URI_V2: &str = "/v2/publisher";
36-
const JRPC_WS_URI_V1: &str = "/v1/jprc";
36+
const JRPC_WS_URI_V1: &str = "/v1/jrpc";
3737

3838
const READINESS_PROBE_PATH: &str = "/ready";
3939
const LIVENESS_PROBE_PATH: &str = "/live";

0 commit comments

Comments
 (0)