Skip to content
Snippets Groups Projects

Oneshot accounts

Merged Pascal Engélibert requested to merge poc-oneshot-accounts into master
Compare and Show latest version
3 files
+ 9
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -76,7 +76,7 @@ benchmarks! {
}: _(
RawOrigin::Signed(caller.clone()),
T::BlockNumber::zero(),
Account::<T>::Normal(recipient_lookup)
Account::<<T::Lookup as StaticLookup>::Source>::Normal(recipient_lookup)
)
verify {
assert_eq!(OneshotAccounts::<T>::get(&caller), None);
@@ -114,8 +114,8 @@ benchmarks! {
}: _(
RawOrigin::Signed(caller.clone()),
T::BlockNumber::zero(),
Account::<T>::Normal(recipient1_lookup),
Account::<T>::Normal(recipient2_lookup),
Account::<<T::Lookup as StaticLookup>::Source>::Normal(recipient1_lookup),
Account::<<T::Lookup as StaticLookup>::Source>::Normal(recipient2_lookup),
existential_deposit.into()
)
verify {
Loading