We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91e1af6 commit ea2659eCopy full SHA for ea2659e
pallets/bridge-registry/src/lib.rs
@@ -140,7 +140,7 @@ pub mod pallet {
140
#[pallet::storage]
141
#[pallet::getter(fn bridges)]
142
/// Storage for map of all bridges
143
- pub(super) type Bridges<T: Config> = StorageMap<
+ pub type Bridges<T: Config> = StorageMap<
144
_,
145
Blake2_256,
146
T::BridgeIndex,
@@ -150,7 +150,7 @@ pub mod pallet {
150
151
#[pallet::getter(fn resource_to_bridge_index)]
152
/// Mapping of resource to bridge index
153
- pub(super) type ResourceToBridgeIndex<T: Config> =
+ pub type ResourceToBridgeIndex<T: Config> =
154
StorageMap<_, Blake2_256, ResourceId, T::BridgeIndex>;
155
156
#[pallet::event]
0 commit comments