git.delta.rocks / unique-network / refs/commits / 1f267425b9a3

difftreelog

test fix build

Yaroslav Bolyukin2023-10-17parent: #d0d6ce4.patch.diff
in: master

5 files changed

modifiednode/cli/Cargo.tomldiffbeforeafterboth

no syntactic changes

modifiedpallets/inflation/src/tests.rsdiffbeforeafterboth
122 type Currency = Balances;122 type Currency = Balances;
123 type TreasuryAccountId = TreasuryAccountId;123 type TreasuryAccountId = TreasuryAccountId;
124 type InflationBlockInterval = InflationBlockInterval;124 type InflationBlockInterval = InflationBlockInterval;
125 type BlockNumberProvider = MockBlockNumberProvider;125 type OnInitializeBlockNumberProvider = MockBlockNumberProvider;
126}126}
127127
128pub fn new_test_ext() -> sp_io::TestExternalities {128pub fn new_test_ext() -> sp_io::TestExternalities {
modifiedpallets/unique/Cargo.tomldiffbeforeafterboth
28 'pallet-evm-coder-substrate/std',28 'pallet-evm-coder-substrate/std',
29 'pallet-evm/std',29 'pallet-evm/std',
30 'pallet-nonfungible/std',30 'pallet-nonfungible/std',
31 'pallet-structure/std',
31 'parity-scale-codec/std',32 'parity-scale-codec/std',
32 'sp-runtime/std',33 'sp-runtime/std',
33 'sp-std/std',34 'sp-std/std',
34 'up-common/std',35 'up-common/std',
35 'up-data-structs/std',36 'up-data-structs/std',
36 'pallet-structure/std',
37]37]
38stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]38stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]
39try-runtime = ["frame-support/try-runtime"]39try-runtime = ["frame-support/try-runtime"]
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
228foreign-assets = []228foreign-assets = []
229gov-test-timings = []229gov-test-timings = []
230governance = []230governance = []
231lookahead = []
231preimage = []232preimage = []
232refungible = []233refungible = []
233session-test-timings = []234session-test-timings = []
234lookahead = []
235235
236################################################################################236################################################################################
237# local dependencies237# local dependencies
modifiedruntime/tests/src/tests.rsdiffbeforeafterboth
1161 // Try to burn item using Token ID1161 // Try to burn item using Token ID
1162 assert_noop!(1162 assert_noop!(
1163 Unique::burn_item(origin1, CollectionId(1), TokenId(1), 5).map_err(|e| e.error),1163 Unique::burn_item(origin1, CollectionId(1), TokenId(1), 5).map_err(|e| e.error),
1164 <pallet_fungible::Error::<Test>>::FungibleItemsHaveNoId1164 <CommonError::<Test>>::FungibleItemsHaveNoId
1165 );1165 );
1166 });1166 });
1167}1167}