Skip to content

Commit b887bd4

Browse files
committed
fix: use dummy rpcs
1 parent 026f0db commit b887bd4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/tasks/oauth.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ mod tests {
148148
let config = BuilderConfig {
149149
host_chain_id: 17000,
150150
ru_chain_id: 17001,
151-
host_rpc_url: "https://ethereum-holesky-rpc.publicnode.com".into(),
152-
ru_rpc_url: "http://rpc.holesky.signet.sh".into(),
151+
host_rpc_url: "host-rpc.example.com".into(),
152+
ru_rpc_url: "ru-rpc.example.com".into(),
153153
zenith_address: Address::default(),
154154
quincey_url: "http://localhost:8080".into(),
155155
builder_port: 8080,

tests/bundle_poller_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ mod tests {
2020
let config = BuilderConfig {
2121
host_chain_id: 17000,
2222
ru_chain_id: 17001,
23-
host_rpc_url: "https://ethereum-holesky-rpc.publicnode.com".into(),
24-
ru_rpc_url: "http://rpc.holesky.signet.sh".into(),
23+
host_rpc_url: "host-rpc.example.com".into(),
24+
ru_rpc_url: "ru-rpc.example.com".into(),
2525
zenith_address: Address::default(),
2626
quincey_url: "http://localhost:8080".into(),
2727
builder_port: 8080,

tests/tx_poller_test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ mod tests {
6767
let config = BuilderConfig {
6868
host_chain_id: 17000,
6969
ru_chain_id: 17001,
70-
host_rpc_url: "https://ethereum-holesky-rpc.publicnode.com".into(),
71-
ru_rpc_url: "http://rpc.holesky.signet.sh".into(),
70+
host_rpc_url: "host-rpc.example.com".into(),
71+
ru_rpc_url: "ru-rpc.example.com".into(),
7272
tx_broadcast_urls: vec!["http://localhost:9000".into()],
7373
zenith_address: Address::default(),
7474
quincey_url: "http://localhost:8080".into(),

0 commit comments

Comments
 (0)