Skip to content

Commit

Permalink
FINE JUST MAKE THE ExecutionCircuitBreaker TYPE PUBLIC THEN
Browse files Browse the repository at this point in the history
  • Loading branch information
zbuc committed Jan 26, 2024
1 parent 3d28a32 commit 4328d6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/component/dex/src/circuit_breaker/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const MAX_EXECUTIONS: u32 = 64;
///
/// The circuit breaker ensures the swap will not use unbounded time complexity.
#[derive(Debug, Clone)]
pub(crate) struct ExecutionCircuitBreaker {
pub struct ExecutionCircuitBreaker {
/// The maximum number of times to perform path searches before stopping.
pub max_path_searches: u32,
/// The number of times path searches have been performed.
Expand Down

0 comments on commit 4328d6f

Please sign in to comment.