From cddeaf4e229c0fc5449c146efe0b82bfc614b267 Mon Sep 17 00:00:00 2001 From: refcell Date: Thu, 21 Nov 2024 14:35:04 -0500 Subject: [PATCH] chore(driver): visibility (#834) --- crates/driver/src/core.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/driver/src/core.rs b/crates/driver/src/core.rs index e3069a02f..9340fac88 100644 --- a/crates/driver/src/core.rs +++ b/crates/driver/src/core.rs @@ -34,11 +34,11 @@ where /// Marker for the pipeline. _marker2: core::marker::PhantomData

, /// A pipeline abstraction. - pipeline: DP, + pub pipeline: DP, /// Cursor to keep track of the L2 tip - cursor: PipelineCursor, + pub cursor: PipelineCursor, /// Executor constructor. - executor: EC, + pub executor: EC, } impl Driver