git.delta.rocks / unique-network / refs/commits / 5626c4ea6486

difftreelog

fix remove pallet_balance from nonfungible pallet

Grigoriy Simonov2023-06-05parent: #742f829.patch.diff
in: master

3 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6970,7 +6970,6 @@
  "frame-benchmarking",
  "frame-support",
  "frame-system",
- "pallet-balances",
  "pallet-common",
  "pallet-evm",
  "pallet-evm-coder-substrate",
modifiedpallets/nonfungible/Cargo.tomldiffbeforeafterboth
before · pallets/nonfungible/Cargo.toml
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-nonfungible"5version = "0.1.14"67[dependencies]8# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.9codec = { workspace = true, package = "parity-scale-codec" }1011evm-coder = { workspace = true }12frame-benchmarking = { workspace = true, optional = true }13frame-support = { workspace = true }14frame-system = { workspace = true }15pallet-balances = { workspace = true }16pallet-common = { workspace = true }17pallet-evm = { workspace = true }18pallet-evm-coder-substrate = { workspace = true }19pallet-structure = { workspace = true }20scale-info = { workspace = true }21sp-core = { workspace = true }22sp-runtime = { workspace = true }23sp-std = { workspace = true }24struct-versioning = { workspace = true }25up-data-structs = { workspace = true }2627[features]28default = ["std"]29runtime-benchmarks = [30	'frame-benchmarking',31	'frame-support/runtime-benchmarks',32	'frame-system/runtime-benchmarks',33	'up-data-structs/runtime-benchmarks',34]35std = [36	"evm-coder/std",37	"frame-support/std",38	"frame-system/std",39	"pallet-common/std",40	"pallet-evm-coder-substrate/std",41	"pallet-evm/std",42	"pallet-structure/std",43	"sp-runtime/std",44	"sp-std/std",45	"up-data-structs/std",46	'frame-benchmarking/std',47]48stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]49try-runtime = ["frame-support/try-runtime"]
modifiedpallets/nonfungible/src/lib.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/lib.rs
+++ b/pallets/nonfungible/src/lib.rs
@@ -170,7 +170,6 @@
 		+ pallet_common::Config
 		+ pallet_structure::Config
 		+ pallet_evm::Config
-		+ pallet_balances::Config
 	{
 		type WeightInfo: WeightInfo;
 	}