Skip to content

Commit

Permalink
chore: solve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
merklefruit committed Sep 18, 2024
1 parent 7315af1 commit dd182a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bolt-sidecar/src/client/constraints_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ impl ConstraintsApi for ConstraintsClient {
mod tests {
use reqwest::Url;

use crate::ConstraintsClient;
use super::ConstraintsClient;

#[test]
fn test_join_endpoints() {
Expand Down
2 changes: 1 addition & 1 deletion bolt-sidecar/src/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::{
start_builder_proxy_server,
state::{fetcher::StateFetcher, ConsensusState, ExecutionState, HeadTracker, StateClient},
telemetry::ApiMetrics,
BuilderProxyConfig, CommitBoostSigner, Config, ConstraintsApi, LocalBuilder, MevBoostClient,
BuilderProxyConfig, CommitBoostSigner, Config, ConstraintsApi, ConstraintsClient, LocalBuilder,
};

/// The driver for the sidecar, responsible for managing the main event loop.
Expand Down
3 changes: 2 additions & 1 deletion bolt-sidecar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ pub use api::{

mod client;
pub use client::{
commit_boost::CommitBoostSigner, mevboost::MevBoostClient, rpc::RpcClient, BeaconClient,
commit_boost::CommitBoostSigner, constraints_client::ConstraintsClient, rpc::RpcClient,
BeaconClient,
};

/// Telemetry and metrics utilities
Expand Down

0 comments on commit dd182a5

Please sign in to comment.