From 8a5a81a24c3e0fab668483b54882757b7302926d Mon Sep 17 00:00:00 2001 From: Ashutosh Varma Date: Wed, 24 Jan 2024 16:50:47 +0400 Subject: [PATCH] feat: make `Pending` storage item public --- frame/ethereum/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frame/ethereum/src/lib.rs b/frame/ethereum/src/lib.rs index e9aa870f11..97b0d69e56 100644 --- a/frame/ethereum/src/lib.rs +++ b/frame/ethereum/src/lib.rs @@ -319,7 +319,7 @@ pub mod pallet { /// Current building block's transactions and receipts. #[pallet::storage] - pub(super) type Pending = + pub type Pending = StorageValue<_, Vec<(Transaction, TransactionStatus, Receipt)>, ValueQuery>; /// The current Ethereum block.