Skip to content

Commit ea2659e

Browse files
authored
fix: updates for light client read (#719)
1 parent 91e1af6 commit ea2659e

File tree

1 file changed

+2
-2
lines changed
  • pallets/bridge-registry/src

1 file changed

+2
-2
lines changed

pallets/bridge-registry/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ pub mod pallet {
140140
#[pallet::storage]
141141
#[pallet::getter(fn bridges)]
142142
/// Storage for map of all bridges
143-
pub(super) type Bridges<T: Config> = StorageMap<
143+
pub type Bridges<T: Config> = StorageMap<
144144
_,
145145
Blake2_256,
146146
T::BridgeIndex,
@@ -150,7 +150,7 @@ pub mod pallet {
150150
#[pallet::storage]
151151
#[pallet::getter(fn resource_to_bridge_index)]
152152
/// Mapping of resource to bridge index
153-
pub(super) type ResourceToBridgeIndex<T: Config> =
153+
pub type ResourceToBridgeIndex<T: Config> =
154154
StorageMap<_, Blake2_256, ResourceId, T::BridgeIndex>;
155155

156156
#[pallet::event]

0 commit comments

Comments
 (0)