git.delta.rocks / unique-network / refs/commits / d412fe4701e1

difftreelog

build remove useless nft dependency on contracts

Yaroslav Bolyukin2021-07-08parent: #3fb6236.patch.diff
in: master

2 files changed

modifiedpallets/nft/Cargo.tomldiffbeforeafterboth
25 'pallet-balances/std',25 'pallet-balances/std',
26 'pallet-evm/std',26 'pallet-evm/std',
27 'pallet-timestamp/std',27 'pallet-timestamp/std',
28 'pallet-contracts/std',
29 'pallet-randomness-collective-flip/std',28 'pallet-randomness-collective-flip/std',
30 'pallet-transaction-payment/std',29 'pallet-transaction-payment/std',
31 'fp-evm/std',30 'fp-evm/std',
95branch = 'polkadot-v0.9.7'94branch = 'polkadot-v0.9.7'
96version = '3.0.0'95version = '3.0.0'
97
98[dependencies.pallet-contracts]
99default-features = false
100git = 'https://github.com/paritytech/substrate.git'
101branch = 'polkadot-v0.9.7'
102version = '3.0.0'
10396
104[dependencies.pallet-transaction-payment]97[dependencies.pallet-transaction-payment]
105default-features = false98default-features = false
modifiedprimitives/nft/Cargo.tomldiffbeforeafterboth
--- a/primitives/nft/Cargo.toml
+++ b/primitives/nft/Cargo.toml
@@ -13,7 +13,6 @@
 serde = { version = "1.0.119", features = ['derive'], default-features = false }
 frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
 frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
-pallet-contracts = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
 sp-core = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
 sp-runtime = { version = "3.0.0", default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.7' }
 
@@ -26,5 +25,4 @@
   "frame-support/std",
   "sp-runtime/std",
   "sp-core/std",
-  "pallet-contracts/std",
 ]
\ No newline at end of file