diff --git a/substrate/core/executor/wasm/src/lib.rs b/substrate/core/executor/wasm/src/lib.rs
index 1c4ec640e7b5b8cc238c81406c561b03bd205313..b85ecafa5a8d13dcd79814927bd7d0d24a94c08f 100644
--- a/substrate/core/executor/wasm/src/lib.rs
+++ b/substrate/core/executor/wasm/src/lib.rs
@@ -16,9 +16,9 @@ use runtime_io::{
 };
 
 macro_rules! impl_stubs {
-	( $( $new_name:ident $($nodecode:ident)* => $invoke:expr ),* ) => {
+	( $( $new_name:ident => $invoke:expr ),* ) => {
 		$(
-			impl_stubs!(@METHOD $new_name $($nodecode)* => $invoke);
+			impl_stubs!(@METHOD $new_name => $invoke);
 		)*
 	};
 	( @METHOD $new_name:ident => $invoke:expr ) => {