Skip to content

Commit

Permalink
apply suggestions from review
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Sep 3, 2024
1 parent e338626 commit bbb845e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions runtime/moonbase/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use substrate_wasm_builder::WasmBuilder;

#[cfg(all(not(feature = "metadata-hash")))]
#[cfg(not(feature = "metadata-hash"))]
fn main() {
WasmBuilder::new()
.with_current_project()
Expand All @@ -25,7 +25,7 @@ fn main() {
.build()
}

#[cfg(all(feature = "metadata-hash"))]
#[cfg(feature = "metadata-hash")]
fn main() {
WasmBuilder::new()
.with_current_project()
Expand Down
4 changes: 2 additions & 2 deletions runtime/moonbeam/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use substrate_wasm_builder::WasmBuilder;

#[cfg(all(not(feature = "metadata-hash")))]
#[cfg(not(feature = "metadata-hash"))]
fn main() {
WasmBuilder::new()
.with_current_project()
Expand All @@ -25,7 +25,7 @@ fn main() {
.build()
}

#[cfg(all(feature = "metadata-hash"))]
#[cfg(feature = "metadata-hash")]
fn main() {
WasmBuilder::new()
.with_current_project()
Expand Down
4 changes: 2 additions & 2 deletions runtime/moonriver/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use substrate_wasm_builder::WasmBuilder;

#[cfg(all(not(feature = "metadata-hash")))]
#[cfg(not(feature = "metadata-hash"))]
fn main() {
WasmBuilder::new()
.with_current_project()
Expand All @@ -25,7 +25,7 @@ fn main() {
.build()
}

#[cfg(all(feature = "metadata-hash"))]
#[cfg(feature = "metadata-hash")]
fn main() {
WasmBuilder::new()
.with_current_project()
Expand Down

0 comments on commit bbb845e

Please sign in to comment.