From 8296fcc295bf8888a7067845d52d3ef322a64d9d Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 9 Sep 2024 15:27:11 +0200 Subject: [PATCH] chore: re-export reth-consensus (#10782) --- bin/reth/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/reth/src/lib.rs b/bin/reth/src/lib.rs index 654ac1201a..452d10a23d 100644 --- a/bin/reth/src/lib.rs +++ b/bin/reth/src/lib.rs @@ -114,6 +114,11 @@ pub mod blockchain_tree { pub use reth_blockchain_tree::*; } +/// Re-exported from `reth_consensus`. +pub mod consensus { + pub use reth_consensus::*; +} + /// Re-exported from `reth_consensus_common`. pub mod consensus_common { pub use reth_consensus_common::*;