From 9047f96d958e130f781ee69aed49307863aabd13 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 21 Apr 2022 19:29:40 +0200 Subject: [PATCH] feat: make stream mod public (#1160) --- ethers-contract/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-contract/src/lib.rs b/ethers-contract/src/lib.rs index 21b14b5c..25bcf8d5 100644 --- a/ethers-contract/src/lib.rs +++ b/ethers-contract/src/lib.rs @@ -20,7 +20,7 @@ pub use event::EthEvent; mod log; pub use log::{decode_logs, EthLogDecode, LogMeta}; -mod stream; +pub mod stream; mod multicall; pub use multicall::Multicall;