File tree Expand file tree Collapse file tree 3 files changed +12
-16
lines changed Expand file tree Collapse file tree 3 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ late_in_slot_time_ms = 2000
54
54
extra_validation_enabled = false
55
55
# Execution Layer RPC url to use for extra validation
56
56
# OPTIONAL
57
- rpc_url = " https://ethereum-holesky-rpc.publicnode.com"
57
+ # rpc_url = "https://ethereum-holesky-rpc.publicnode.com"
58
58
# Timeout for any HTTP requests sent from the PBS module to other services, in seconds
59
59
# OPTIONAL, DEFAULT: 10
60
60
http_timeout_seconds = 10
Original file line number Diff line number Diff line change @@ -2,24 +2,24 @@ chain = "Holesky"
2
2
3
3
[pbs ]
4
4
docker_image = " ghcr.io/commit-boost/pbs:latest"
5
- with_signer = false
5
+ extra_validation_enabled = false
6
6
host = " 127.0.0.1"
7
+ late_in_slot_time_ms = 2000
8
+ min_bid_eth = 0.5
7
9
port = 18550
8
10
relay_check = true
9
- wait_all_registrations = true
11
+ skip_sigverify = false
10
12
timeout_get_header_ms = 950
11
13
timeout_get_payload_ms = 4000
12
14
timeout_register_validator_ms = 3000
13
- skip_sigverify = false
14
- min_bid_eth = 0.5
15
- late_in_slot_time_ms = 2000
16
- extra_validation_enabled = false
17
- rpc_url = " https://ethereum-holesky-rpc.publicnode.com"
15
+ wait_all_registrations = true
16
+ with_signer = false
17
+
18
18
19
19
[[relays ]]
20
- id = " example-relay"
21
- url = " http://0xa1cec75a3f0661e99299274182938151e8433c61a19222347ea1313d839229cb4ce4e3e5aa2bdeb71c8fcf1b084963c2@abc.xyz"
22
- headers = { X-MyCustomHeader = " MyCustomHeader" }
23
20
enable_timing_games = false
24
- target_first_request_ms = 200
25
21
frequency_get_header_ms = 300
22
+ headers = { X-MyCustomHeader = " MyCustomHeader" }
23
+ id = " example-relay"
24
+ target_first_request_ms = 200
25
+ url = " http://0xa1cec75a3f0661e99299274182938151e8433c61a19222347ea1313d839229cb4ce4e3e5aa2bdeb71c8fcf1b084963c2@abc.xyz"
Original file line number Diff line number Diff line change @@ -55,10 +55,6 @@ async fn test_load_pbs_happy() -> Result<()> {
55
55
assert_eq ! ( config. pbs. pbs_config. min_bid_wei, U256 :: from( ( 0.5 * WEI_PER_ETH as f64 ) as u64 ) ) ;
56
56
assert_eq ! ( config. pbs. pbs_config. late_in_slot_time_ms, 2000 ) ;
57
57
assert ! ( !config. pbs. pbs_config. extra_validation_enabled) ;
58
- assert_eq ! (
59
- config. pbs. pbs_config. rpc_url,
60
- Some ( "https://ethereum-holesky-rpc.publicnode.com" . parse:: <Url >( ) . unwrap( ) )
61
- ) ;
62
58
63
59
// Relay specific settings
64
60
let relay = & config. relays [ 0 ] ;
You can’t perform that action at this time.
0 commit comments