mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
fix deprecated usage of panic (#8134)
This commit is contained in:
committed by
GitHub
parent
ed9c08dd01
commit
f49aae65a8
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user