From df03c641f6cdd4b0391340e0bba85f3b2ff6086d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= <123550+andresilva@users.noreply.github.com> Date: Thu, 5 Jan 2023 15:19:24 +0000 Subject: [PATCH] aura: remove stale check to skip execution (#13074) --- client/consensus/aura/src/import_queue.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/consensus/aura/src/import_queue.rs b/client/consensus/aura/src/import_queue.rs index fb3baaae16d96..0628d2490a275 100644 --- a/client/consensus/aura/src/import_queue.rs +++ b/client/consensus/aura/src/import_queue.rs @@ -254,7 +254,8 @@ where inherent_data.aura_replace_inherent_data(slot); - // skip the inherents verification if the runtime API is old. + // skip the inherents verification if the runtime API is old or not expected to + // exist. if self .client .runtime_api()