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
--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -175,7 +175,7 @@
 	'pallet-xcm/try-runtime',
 	'parachain-info/try-runtime',
 ]
-unique-runtime = ['foreign-assets']
+unique-runtime = ['foreign-assets', 'refungible']
 
 collator-selection = []
 foreign-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 });