git.delta.rocks / unique-network / refs/commits / 64cbd211ced2

difftreelog

fix(rmrk-core) benchmark

Daniel Shiposha2022-06-09parent: #2ddde2c.patch.diff
in: master

1 file changed

modifiedpallets/proxy-rmrk-core/src/benchmarking.rsdiffbeforeafterboth
20 let caller = account("caller", 0, SEED);20 let caller = account("caller", 0, SEED);
21 <T as pallet_common::Config>::Currency::deposit_creating(&caller, T::CollectionCreationPrice::get());21 <T as pallet_common::Config>::Currency::deposit_creating(&caller, T::CollectionCreationPrice::get());
22 let metadata = create_data();22 let metadata = create_data();
23 // TODO: Fix CollectionTokenPrefixLimitExceeded with create_data23 let max = None;
24 let symbol = vec![].try_into().expect("0 <= x");24 let symbol = create_data();
25 }: _(RawOrigin::Signed(caller), metadata, None, symbol)25 }: _(RawOrigin::Signed(caller), metadata, max, symbol)
26}26}
2727