File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ pub enum Error {
2828
2929/// Low-level error related to RPC calls and failover logic.
3030#[ derive( Error , Debug ) ]
31- pub ( crate ) enum CoreError {
31+ pub enum CoreError {
3232 #[ error( "Operation timed out" ) ]
3333 Timeout ,
3434 #[ error( "RPC call failed after exhausting all retry attempts: {0}" ) ]
@@ -315,7 +315,7 @@ impl<N: Network> RobustProvider<N> {
315315 /// * Returns [`RpcError::Transport(TransportErrorKind::PubsubUnavailable)`] if `require_pubsub`
316316 /// is true and all providers don't support pubsub.
317317 /// * Propagates any [`RpcError<TransportErrorKind>`] from the underlying retries.
318- pub ( crate ) async fn try_operation_with_failover < T : Debug , F , Fut > (
318+ pub async fn try_operation_with_failover < T : Debug , F , Fut > (
319319 & self ,
320320 operation : F ,
321321 require_pubsub : bool ,
You can’t perform that action at this time.
0 commit comments