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

difftreelog

feat enable refungible on unique

Yaroslav Bolyukin2023-02-15parent: #6f5be65.patch.diff
in: master

2 files changed

modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
175 'pallet-xcm/try-runtime',175 'pallet-xcm/try-runtime',
176 'parachain-info/try-runtime',176 'parachain-info/try-runtime',
177]177]
178unique-runtime = ['foreign-assets']178unique-runtime = ['foreign-assets', 'refungible']
179179
180collator-selection = []180collator-selection = []
181foreign-assets = []181foreign-assets = []
modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
86 } else if (chain.eq('UNIQUE')) {86 } else if (chain.eq('UNIQUE')) {
87 // Insert Unique additional pallets here87 // Insert Unique additional pallets here
88 requiredPallets.push(foreignAssets);88 requiredPallets.push(
89 refungible,
90 foreignAssets,
91 );
89 }92 }
90 });93 });