From 9c6a5d88aac9133a0db73e308cd1b7fc304e0fe9 Mon Sep 17 00:00:00 2001 From: chevdor Date: Fri, 26 Jun 2020 11:41:02 +0200 Subject: [PATCH] Add batch calls for other chains --- runtime/polkadot/src/lib.rs | 1 + runtime/westend/src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index d21e80571f30..dcb0650e1aba 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -842,6 +842,7 @@ impl InstanceFilter for ProxyType { }, ProxyType::IdentityJudgement => matches!(c, Call::Identity(identity::Call::provide_judgement(..)) + | Call::Utility(utility::Call::batch(..)) ) } } diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index 01e2804727e1..6e8bd9ad3c55 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -635,6 +635,7 @@ impl InstanceFilter for ProxyType { }, ProxyType::IdentityJudgement => matches!(c, Call::Identity(identity::Call::provide_judgement(..)) + | Call::Utility(utility::Call::batch(..)) ) } }