git.delta.rocks / unique-network / refs/commits / 29dbca81ac00

difftreelog

fix cargo fmt

Daniel Shiposha2022-10-03parent: #ea2246a.patch.diff
in: master

2 files changed

modifiedpallets/common/src/benchmarking.rsdiffbeforeafterboth
116 create_collection_raw(116 create_collection_raw(
117 owner,117 owner,
118 CollectionMode::NFT,118 CollectionMode::NFT,
119 |owner: T::CrossAccountId, data| <Pallet<T>>::init_collection(owner.clone(), owner, data, CollectionFlags::default()),119 |owner: T::CrossAccountId, data| {
120 <Pallet<T>>::init_collection(owner.clone(), owner, data, CollectionFlags::default())
121 },
120 |h| h,122 |h| h,
121 )123 )
122}124}
modifiedpallets/nonfungible/src/benchmarking.rsdiffbeforeafterboth
54 create_collection_raw(54 create_collection_raw(
55 owner,55 owner,
56 CollectionMode::NFT,56 CollectionMode::NFT,
57 |owner: T::CrossAccountId, data| <Pallet<T>>::init_collection(owner.clone(), owner, data, true),57 |owner: T::CrossAccountId, data| {
58 <Pallet<T>>::init_collection(owner.clone(), owner, data, true)
59 },
58 NonfungibleHandle::cast,60 NonfungibleHandle::cast,
59 )61 )
60}62}