From 574200008cefe99f803afd552bd3acec6452847b Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Mon, 05 Jun 2023 16:09:04 +0000 Subject: [PATCH] style: fix formatting --- --- a/runtime/opal/src/lib.rs +++ b/runtime/opal/src/lib.rs @@ -56,9 +56,9 @@ impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, - #[cfg(feature="state-version-0")] + #[cfg(feature = "state-version-0")] state_version: 0, - #[cfg(not(feature="state-version-0"))] + #[cfg(not(feature = "state-version-0"))] state_version: 1, }; --- a/runtime/quartz/src/lib.rs +++ b/runtime/quartz/src/lib.rs @@ -59,9 +59,9 @@ impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, - #[cfg(feature="state-version-0")] + #[cfg(feature = "state-version-0")] state_version: 0, - #[cfg(not(feature="state-version-0"))] + #[cfg(not(feature = "state-version-0"))] state_version: 1, }; --- a/runtime/unique/src/lib.rs +++ b/runtime/unique/src/lib.rs @@ -56,9 +56,9 @@ impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, - #[cfg(feature="state-version-0")] + #[cfg(feature = "state-version-0")] state_version: 0, - #[cfg(not(feature="state-version-0"))] + #[cfg(not(feature = "state-version-0"))] state_version: 1, }; -- gitstuff