deposit method of orml-currencies is not working in benchmarks
pub fn create_funded_user<T: Config>(
seed: &'static str,
n: u32,
balance_factor: u32,
) -> T::AccountId {
let user = account(seed, n, 0);
let balance: BalanceOf<T> = balance_factor.into();
assert_ok!(<T::MultiCurrency as MultiCurrency<
<T as frame_system::Config>::AccountId,
>>::deposit(CurrencyId::Native, &user, balance,));
user
}
Reference: https://github.com/ImbueNetwork/imbue/blob/0744ca52a89b2d2a17ba379c43663c3882df2592/pallets/proposals/src/test_utils.rs#L117-L128
depositmethod oforml-currenciesis not working in benchmarksReference: https://github.com/ImbueNetwork/imbue/blob/0744ca52a89b2d2a17ba379c43663c3882df2592/pallets/proposals/src/test_utils.rs#L117-L128