Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 8baaa18

Browse files
authored
bound some missing bound for elevated trait (#6487)
1 parent ad7b5ef commit 8baaa18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frame/balances/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -862,8 +862,8 @@ impl<T: Subtrait<I>, I: Instance> frame_system::Trait for ElevatedTrait<T, I> {
862862
type BlockHashCount = T::BlockHashCount;
863863
type MaximumBlockWeight = T::MaximumBlockWeight;
864864
type DbWeight = T::DbWeight;
865-
type BlockExecutionWeight = ();
866-
type ExtrinsicBaseWeight = ();
865+
type BlockExecutionWeight = T::BlockExecutionWeight;
866+
type ExtrinsicBaseWeight = T::ExtrinsicBaseWeight;
867867
type MaximumExtrinsicWeight = T::MaximumBlockWeight;
868868
type MaximumBlockLength = T::MaximumBlockLength;
869869
type AvailableBlockRatio = T::AvailableBlockRatio;

0 commit comments

Comments
 (0)