fix deprecated usage of panic (#8134)

This commit is contained in:
Guillaume Thiolliere
2021-02-16 19:02:53 +01:00
committed by GitHub
parent ed9c08dd01
commit f49aae65a8
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -320,7 +320,7 @@ where
) {
extrinsics.into_iter().for_each(|e| if let Err(e) = Self::apply_extrinsic(e) {
let err: &'static str = e.into();
panic!(err)
panic!("{}", err)
});
// post-extrinsics book-keeping