diff --git a/Cargo.lock b/Cargo.lock index 45cefc99ea284..781250e3ebb37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4714,7 +4714,6 @@ dependencies = [ "hex-literal", "log 0.4.14", "node-primitives", - "pallet-assets", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", diff --git a/bin/node/runtime/src/lib.rs b/bin/node/runtime/src/lib.rs index 584b6aa8bc1ee..1effacb0689a4 100644 --- a/bin/node/runtime/src/lib.rs +++ b/bin/node/runtime/src/lib.rs @@ -1239,11 +1239,11 @@ construct_runtime!( Bounties: pallet_bounties, Tips: pallet_tips, BagsList: pallet_bags_list, - CereDDCModule: pallet_cere_ddc, - ChainBridge: pallet_chainbridge, - Erc721: pallet_erc721, - Erc20: pallet_erc20, - DdcMetricsOffchainWorker: pallet_ddc_metrics_offchain_worker, + CereDDCModule: pallet_cere_ddc::{Pallet, Call, Storage, Event}, + ChainBridge: pallet_chainbridge::{Pallet, Call, Storage, Event}, + Erc721: pallet_erc721::{Pallet, Call, Storage, Event}, + Erc20: pallet_erc20::{Pallet, Call, Storage, Event}, + DdcMetricsOffchainWorker: pallet_ddc_metrics_offchain_worker::{Pallet, Call, Storage, Event}, } );