From 7503ba96672f0db070c9b7cf8a8990d3829438aa Mon Sep 17 00:00:00 2001 From: Valentin Fernandez Date: Fri, 15 Dec 2023 12:30:43 -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 56eb6b3fd4..33859eb43c 100644 --- a/frame/ethereum/src/lib.rs +++ b/frame/ethereum/src/lib.rs @@ -317,7 +317,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.