git.delta.rocks / unique-network / refs/commits / 574200008cef

difftreelog

style fix formatting

Yaroslav Bolyukin2023-06-05parent: #590af3c.patch.diff
in: master

3 files changed

modifiedruntime/opal/src/lib.rsdiffbeforeafterboth

no syntactic changes

modifiedruntime/quartz/src/lib.rsdiffbeforeafterboth
--- 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,
 };
 
modifiedruntime/unique/src/lib.rsdiffbeforeafterboth
--- 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,
 };