diff --git a/common/src/lib.rs b/common/src/lib.rs index 590eb7fee3..392e8f8080 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -147,7 +147,7 @@ pub enum ProxyType { NonCritical, NonTransfer, Senate, - NonFungibile, // Nothing involving moving TAO + NonFungible, // Nothing involving moving TAO Triumvirate, Governance, // Both above governance Staking, diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 389a01a983..630140bfc9 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -220,7 +220,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 329, + spec_version: 330, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -542,7 +542,7 @@ impl InstanceFilter for ProxyType { ) | RuntimeCall::SubtensorModule(pallet_subtensor::Call::swap_coldkey { .. }) ), - ProxyType::NonFungibile => !matches!( + ProxyType::NonFungible => !matches!( c, RuntimeCall::Balances(..) | RuntimeCall::SubtensorModule(pallet_subtensor::Call::add_stake { .. }) diff --git a/runtime/tests/pallet_proxy.rs b/runtime/tests/pallet_proxy.rs index 016c8192bc..422885eaba 100644 --- a/runtime/tests/pallet_proxy.rs +++ b/runtime/tests/pallet_proxy.rs @@ -168,7 +168,7 @@ fn test_proxy_pallet() { ProxyType::Owner, ProxyType::NonCritical, ProxyType::NonTransfer, - ProxyType::NonFungibile, + ProxyType::NonFungible, ProxyType::Staking, ProxyType::Registration, ];