Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
address comment
  • Loading branch information
4meta5 committed Jan 29, 2021
commit d2f53d1f24d26842d135f6d9d7e250babc18f10e
5 changes: 4 additions & 1 deletion frame/support/src/inherent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,10 @@ mod tests {

let block = Block::new(
Header::new_from_number(1),
vec![Extrinsic { function: Call::Test(CallTest::SomethingElse) }],
vec![
Extrinsic { function: Call::Test2(CallTest2::Something) },
Extrinsic { function: Call::Test(CallTest::SomethingElse) },
],
);

assert!(InherentData::new().check_extrinsics(&block).fatal_error());
Expand Down