mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +00:00
Cancel Proxy Type (#2334)
* cancel proxy * fix * Remove reject_announcement and add CancelProxy to westend Co-authored-by: David Dorgan <david@parity.io>
This commit is contained in:
@@ -591,6 +591,7 @@ pub enum ProxyType {
|
||||
Staking,
|
||||
SudoBalances,
|
||||
IdentityJudgement,
|
||||
CancelProxy,
|
||||
}
|
||||
impl Default for ProxyType { fn default() -> Self { Self::Any } }
|
||||
impl InstanceFilter<Call> for ProxyType {
|
||||
@@ -643,6 +644,9 @@ impl InstanceFilter<Call> for ProxyType {
|
||||
ProxyType::IdentityJudgement => matches!(c,
|
||||
Call::Identity(pallet_identity::Call::provide_judgement(..)) |
|
||||
Call::Utility(..)
|
||||
),
|
||||
ProxyType::CancelProxy => matches!(c,
|
||||
Call::Proxy(pallet_proxy::Call::remove_announcement(..))
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user