Skip to content

Commit

Permalink
fix: try to fix env error
Browse files Browse the repository at this point in the history
  • Loading branch information
agustinustheo committed Oct 2, 2024
1 parent 0172d86 commit b8c4f13
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,18 @@ pub struct ParachainNativeExecutor;

#[cfg(feature = "runtime-benchmarks")]
pub type HostFunctions = (
sp_io::SubstrateHostFunctions,
cumulus_client_service::ParachainHostFunctions,
frame_benchmarking::benchmarking::HostFunctions,
cumulus_client_service::storage_proof_size::HostFunctions,
moonbeam_primitives_ext::moonbeam_ext::HostFunctions,
frame_benchmarking::benchmarking::HostFunctions,
);

#[cfg(not(feature = "runtime-benchmarks"))]
pub type HostFunctions = (
sp_io::SubstrateHostFunctions,
cumulus_client_service::ParachainHostFunctions,
cumulus_client_service::storage_proof_size::HostFunctions,
moonbeam_primitives_ext::moonbeam_ext::HostFunctions,
);

Expand Down

0 comments on commit b8c4f13

Please sign in to comment.