Skip to content

Commit

Permalink
Merge pull request #197 from paritytech/fix/approve-proxy-funding-filter
Browse files Browse the repository at this point in the history
Allow RestrictProxyManagement to execute approve_proxy_funding
  • Loading branch information
gautamdhameja authored Jul 30, 2024
2 parents 41b4a2c + cd19a5b commit 14193c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions runtime/mainnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("mythos"),
impl_name: create_runtime_str!("mythos"),
authoring_version: 1,
spec_version: 1007,
spec_version: 1008,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -771,7 +771,6 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
| RuntimeCall::MythProxy(
pallet_myth_proxy::Call::remove_sponsored_proxy { .. }
) | RuntimeCall::MythProxy(pallet_myth_proxy::Call::remove_proxy { .. })
| RuntimeCall::MythProxy(pallet_myth_proxy::Call::approve_proxy_funding { .. })
| RuntimeCall::MythProxy(
pallet_myth_proxy::Call::register_sponsor_agent { .. }
) | RuntimeCall::MythProxy(pallet_myth_proxy::Call::revoke_sponsor_agent { .. })
Expand Down
3 changes: 1 addition & 2 deletions runtime/testnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("muse"),
impl_name: create_runtime_str!("muse"),
authoring_version: 1,
spec_version: 1011,
spec_version: 1012,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -717,7 +717,6 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
| RuntimeCall::MythProxy(
pallet_myth_proxy::Call::remove_sponsored_proxy { .. }
) | RuntimeCall::MythProxy(pallet_myth_proxy::Call::remove_proxy { .. })
| RuntimeCall::MythProxy(pallet_myth_proxy::Call::approve_proxy_funding { .. })
| RuntimeCall::MythProxy(
pallet_myth_proxy::Call::register_sponsor_agent { .. }
) | RuntimeCall::MythProxy(pallet_myth_proxy::Call::revoke_sponsor_agent { .. })
Expand Down

0 comments on commit 14193c6

Please sign in to comment.