diff --git a/runtime/development/src/lib.rs b/runtime/development/src/lib.rs index 1b39a8988d..2684d3414a 100644 --- a/runtime/development/src/lib.rs +++ b/runtime/development/src/lib.rs @@ -360,6 +360,7 @@ pub enum ProxyType { NFTMint, NFTTransfer, NFTManagement, + AnchorManagement, } impl Default for ProxyType { fn default() -> Self { @@ -428,6 +429,7 @@ impl InstanceFilter for ProxyType { matches!(c, Call::Uniques(pallet_uniques::Call::transfer { .. })) } ProxyType::NFTManagement => matches!(c, Call::Uniques(..)), + ProxyType::AnchorManagement => matches!(c, Call::Anchor(..)), } }