Skip to content

Commit

Permalink
refactor: runtime devnet
Browse files Browse the repository at this point in the history
  • Loading branch information
Daanvdplas committed Aug 16, 2024
1 parent 5934fa8 commit f2ef7a1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion runtime/devnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ parachain-info.workspace = true
[dev-dependencies]
env_logger = "0.11.2"
hex = "0.4.3"
rand = "0.8.5"

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions runtime/devnet/src/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub(crate) mod api;
pub mod assets;
mod api;
mod assets;
mod contracts;
mod proxy;
// Public due to integration tests crate.
Expand Down
4 changes: 2 additions & 2 deletions runtime/devnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ use weights::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight};
// XCM Imports
use xcm::latest::prelude::BodyId;

pub(crate) use pallet_api::fungibles;
use pallet_api::fungibles;

/// Some way of identifying an account on the chain. We intentionally make it equivalent
/// to the public key of our transaction signing scheme.
Expand Down Expand Up @@ -590,7 +590,7 @@ construct_runtime!(
mod benches {
frame_benchmarking::define_benchmarks!(
[frame_system, SystemBench::<Runtime>]
[pallet_api::fungibles, Fungibles]
[fungibles, Fungibles]
[pallet_balances, Balances]
[pallet_session, SessionBench::<Runtime>]
[pallet_timestamp, Timestamp]
Expand Down

0 comments on commit f2ef7a1

Please sign in to comment.