File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
crates/op-rbuilder/src/primitives/reth Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,13 @@ use url::Url;
43
43
pub struct EnginePeer {
44
44
pub url : Url ,
45
45
pub jwt : JwtSecret ,
46
- // Flag the indicates if FCU was successfully received
47
- // Caution: could be subjected to race conditions in case 2 FCU issued in short time
48
- pub healthy : Arc < AtomicBool > ,
49
46
}
50
47
51
48
impl EnginePeer {
52
49
pub fn new ( url : Url , jwt_path : JwtSecret ) -> Self {
53
50
Self {
54
51
url,
55
- jwt : jwt_path,
56
- healthy : Arc :: new ( AtomicBool :: new ( false ) ) ,
52
+ jwt : jwt_path
57
53
}
58
54
}
59
55
@@ -218,7 +214,7 @@ where
218
214
parent_beacon_block_root : B256 ,
219
215
execution_requests : Requests ,
220
216
) -> RpcResult < PayloadStatus > {
221
- self . new_payload_v4 (
217
+ self . inner . new_payload_v4 (
222
218
payload,
223
219
versioned_hashes,
224
220
parent_beacon_block_root,
You can’t perform that action at this time.
0 commit comments