mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 18:41:03 +00:00
NonTransfer should be a superset of collator selection (#1385)
* This should ideally be set. * Not convinced guard order is always guarenteed. * assets / uniques should not be included. * correction
This commit is contained in:
@@ -377,6 +377,7 @@ impl InstanceFilter<Call> for ProxyType {
|
|||||||
),
|
),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_superset(&self, o: &Self) -> bool {
|
fn is_superset(&self, o: &Self) -> bool {
|
||||||
match (self, o) {
|
match (self, o) {
|
||||||
(x, y) if x == y => true,
|
(x, y) if x == y => true,
|
||||||
@@ -384,6 +385,7 @@ impl InstanceFilter<Call> for ProxyType {
|
|||||||
(_, ProxyType::Any) => false,
|
(_, ProxyType::Any) => false,
|
||||||
(ProxyType::Assets, ProxyType::AssetOwner) => true,
|
(ProxyType::Assets, ProxyType::AssetOwner) => true,
|
||||||
(ProxyType::Assets, ProxyType::AssetManager) => true,
|
(ProxyType::Assets, ProxyType::AssetManager) => true,
|
||||||
|
(ProxyType::NonTransfer, ProxyType::Collator) => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -407,6 +407,7 @@ impl InstanceFilter<Call> for ProxyType {
|
|||||||
),
|
),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_superset(&self, o: &Self) -> bool {
|
fn is_superset(&self, o: &Self) -> bool {
|
||||||
match (self, o) {
|
match (self, o) {
|
||||||
(x, y) if x == y => true,
|
(x, y) if x == y => true,
|
||||||
@@ -414,6 +415,7 @@ impl InstanceFilter<Call> for ProxyType {
|
|||||||
(_, ProxyType::Any) => false,
|
(_, ProxyType::Any) => false,
|
||||||
(ProxyType::Assets, ProxyType::AssetOwner) => true,
|
(ProxyType::Assets, ProxyType::AssetOwner) => true,
|
||||||
(ProxyType::Assets, ProxyType::AssetManager) => true,
|
(ProxyType::Assets, ProxyType::AssetManager) => true,
|
||||||
|
(ProxyType::NonTransfer, ProxyType::Collator) => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -372,6 +372,7 @@ impl InstanceFilter<Call> for ProxyType {
|
|||||||
),
|
),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn is_superset(&self, o: &Self) -> bool {
|
fn is_superset(&self, o: &Self) -> bool {
|
||||||
match (self, o) {
|
match (self, o) {
|
||||||
(x, y) if x == y => true,
|
(x, y) if x == y => true,
|
||||||
@@ -379,6 +380,7 @@ impl InstanceFilter<Call> for ProxyType {
|
|||||||
(_, ProxyType::Any) => false,
|
(_, ProxyType::Any) => false,
|
||||||
(ProxyType::Assets, ProxyType::AssetOwner) => true,
|
(ProxyType::Assets, ProxyType::AssetOwner) => true,
|
||||||
(ProxyType::Assets, ProxyType::AssetManager) => true,
|
(ProxyType::Assets, ProxyType::AssetManager) => true,
|
||||||
|
(ProxyType::NonTransfer, ProxyType::Collator) => true,
|
||||||
_ => false,
|
_ => false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user