Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest committed Aug 14, 2024
1 parent 71dfcb7 commit 8291389
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions primitives/evm/src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,6 @@ impl<'config, E: From<TransactionValidationError>> CheckEvmTransaction<'config,

#[cfg(test)]
mod tests {
use frame_support::weights::Weight;

use super::*;

#[derive(Debug, PartialEq)]
Expand Down
2 changes: 1 addition & 1 deletion template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sp-transaction-pool = { workspace = true, features = ["default"] }
# Cumulus
cumulus-client-service = { workspace = true }
cumulus-primitives-storage-weight-reclaim = { workspace = true, optional = true }
polkadot-service = { workspace = true }
polkadot-service = { workspace = true, optional = true }
# These dependencies are used for RPC
frame-system-rpc-runtime-api = { workspace = true }
pallet-transaction-payment-rpc = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions template/node/src/benchmarking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use fp_account::AccountId20;
use frontier_template_runtime::{self as runtime, AccountId, Balance, BalancesCall, SystemCall};

use crate::service::Client;
use polkadot_service as _;

/// Generates extrinsics for the `benchmark overhead` command.
///
Expand Down
1 change: 1 addition & 0 deletions template/node/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ use crate::{
#[cfg(feature = "runtime-benchmarks")]
pub type HostFunctions = (
sp_io::SubstrateHostFunctions,
cumulus_client_service::storage_proof_size::HostFunctions,
frame_benchmarking::benchmarking::HostFunctions,
);
/// Otherwise we use empty host functions for ext host functions.
Expand Down

0 comments on commit 8291389

Please sign in to comment.