From 281cefbe24286caa431b606d3419c86de91032e1 Mon Sep 17 00:00:00 2001 From: Pia Date: Wed, 3 Apr 2024 13:36:02 +0900 Subject: [PATCH] make tx , tx_receipt pub --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 51b919a..3a19c61 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,8 +2,8 @@ use alloy_transport::{RpcError, TransportErrorKind}; use eth_trie::TrieError; mod rpc; -mod tx; -mod tx_receipt; +pub mod tx; +pub mod tx_receipt; pub mod tx_receipt_trie; pub mod tx_trie;