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

Commit

Permalink
comma
Browse files Browse the repository at this point in the history
  • Loading branch information
emostov committed Sep 25, 2021
1 parent 5590d94 commit aa8a523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frame/bags-list/src/list/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ impl<T: Config> Node<T> {
let terminal_check =
expected_bag.head.as_ref() == Some(id) || expected_bag.tail.as_ref() == Some(id);
frame_support::ensure!(
non_terminal_check || terminal_check
non_terminal_check || terminal_check,
"a terminal node is neither its bag head or tail"
);

Expand Down

0 comments on commit aa8a523

Please sign in to comment.