diff --git a/core/sr-io/Cargo.toml b/core/sr-io/Cargo.toml index f3122f0e3029fd65dc4eebc76a6b637595e0e7fe..7382cfb0022f83bea9422ea26c2b13c21f9966b6 100644 --- a/core/sr-io/Cargo.toml +++ b/core/sr-io/Cargo.toml @@ -37,6 +37,5 @@ std = [ ] nightly = [] strict = [] -wasm-nice-panic-message = [] no_panic_handler = [] no_oom = [] diff --git a/core/sr-io/without_std.rs b/core/sr-io/without_std.rs index 6803b41ebd3fb64abbd544aed40eeb44a7c78b1f..0ff1702f907bff33d13c9fa2f9dff466c6e4ce13 100644 --- a/core/sr-io/without_std.rs +++ b/core/sr-io/without_std.rs @@ -28,19 +28,8 @@ use codec::Decode; #[no_mangle] pub fn panic(info: &PanicInfo) -> ! { unsafe { - #[cfg(feature = "wasm-nice-panic-message")] - { - let message = rstd::alloc::format!("{}", info); - extern_functions_host_impl::ext_print_utf8(message.as_ptr() as *const u8, message.len() as u32); - } - #[cfg(not(feature = "wasm-nice-panic-message"))] - { - if let Some(loc) = info.location() { - extern_functions_host_impl::ext_print_utf8(loc.file().as_ptr() as *const u8, loc.file().len() as u32); - extern_functions_host_impl::ext_print_num(loc.line() as u64); - extern_functions_host_impl::ext_print_num(loc.column() as u64); - } - } + let message = rstd::alloc::format!("{}", info); + extern_functions_host_impl::ext_print_utf8(message.as_ptr() as *const u8, message.len() as u32); intrinsics::abort() } } diff --git a/srml/aura/Cargo.toml b/srml/aura/Cargo.toml index 961c178c34e3c8beaafc4e46c7798d03b96e436d..d7d6f8c9cff926da0bd941929c736dc604df4afb 100644 --- a/srml/aura/Cargo.toml +++ b/srml/aura/Cargo.toml @@ -13,7 +13,7 @@ rstd = { package = "sr-std", path = "../../core/sr-std", default-features = fals serde = { version = "1.0", optional = true } session = { package = "srml-session", path = "../session", default-features = false } sr-primitives = { path = "../../core/sr-primitives", default-features = false } -runtime-io ={ package = "sr-io", path = "../../core/sr-io", default-features = false, features = [ "wasm-nice-panic-message" ] } +runtime-io ={ package = "sr-io", path = "../../core/sr-io", default-features = false } support = { package = "srml-support", path = "../support", default-features = false } substrate-consensus-aura-primitives = { path = "../../core/consensus/aura/primitives", default-features = false} system = { package = "srml-system", path = "../system", default-features = false } diff --git a/srml/babe/Cargo.toml b/srml/babe/Cargo.toml index 35828fdb1cc9cd1458898308ed6076a8713e90e6..3819bb14c7b1d64aa751d206158b402471dfe0ee 100644 --- a/srml/babe/Cargo.toml +++ b/srml/babe/Cargo.toml @@ -17,7 +17,7 @@ system = { package = "srml-system", path = "../system", default-features = false timestamp = { package = "srml-timestamp", path = "../timestamp", default-features = false } session = { package = "srml-session", path = "../session", default-features = false } babe-primitives = { package = "substrate-consensus-babe-primitives", path = "../../core/consensus/babe/primitives", default-features = false } -runtime-io ={ package = "sr-io", path = "../../core/sr-io", default-features = false, features = [ "wasm-nice-panic-message" ] } +runtime-io ={ package = "sr-io", path = "../../core/sr-io", default-features = false } [dev-dependencies] lazy_static = "1.3.0"