difftreelog
fix(rmrk-core) benchmark
in: master
1 file changed
pallets/proxy-rmrk-core/src/benchmarking.rsdiffbeforeafterboth20 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