From 07a7ff2bca0b0419df524fd8716d2e16c4c6cd19 Mon Sep 17 00:00:00 2001 From: Valentin Fernandez Date: Fri, 15 Dec 2023 10:55:53 -0300 Subject: [PATCH] Make Pending type available for other pallets --- 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.