From 9f53fc9bfcda22eab7953c75c680b62e584eff88 Mon Sep 17 00:00:00 2001 From: Mathieu <60658558+msaug@users.noreply.github.com> Date: Wed, 14 Dec 2022 17:43:43 +0100 Subject: [PATCH] chore: export ExecutionBlock type (#146) * export ExecutionBlock type * fix linting error * Format with cargo fmt --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 914e9f6..b54ebc5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,7 +60,7 @@ pub mod config { pub mod types { pub use common::types::BlockTag; - pub use execution::types::CallOpts; + pub use execution::types::{CallOpts, ExecutionBlock}; } pub mod errors {