File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ pub enum ProxyType {
147147 NonCritical ,
148148 NonTransfer ,
149149 Senate ,
150- NonFungibile , // Nothing involving moving TAO
150+ NonFungible , // Nothing involving moving TAO
151151 Triumvirate ,
152152 Governance , // Both above governance
153153 Staking ,
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
220220 // `spec_version`, and `authoring_version` are the same between Wasm and native.
221221 // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
222222 // the compatible custom types.
223- spec_version : 329 ,
223+ spec_version : 330 ,
224224 impl_version : 1 ,
225225 apis : RUNTIME_API_VERSIONS ,
226226 transaction_version : 1 ,
@@ -542,7 +542,7 @@ impl InstanceFilter<RuntimeCall> for ProxyType {
542542 )
543543 | RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: swap_coldkey { .. } )
544544 ) ,
545- ProxyType :: NonFungibile => !matches ! (
545+ ProxyType :: NonFungible => !matches ! (
546546 c,
547547 RuntimeCall :: Balances ( ..)
548548 | RuntimeCall :: SubtensorModule ( pallet_subtensor:: Call :: add_stake { .. } )
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ fn test_proxy_pallet() {
168168 ProxyType :: Owner ,
169169 ProxyType :: NonCritical ,
170170 ProxyType :: NonTransfer ,
171- ProxyType :: NonFungibile ,
171+ ProxyType :: NonFungible ,
172172 ProxyType :: Staking ,
173173 ProxyType :: Registration ,
174174 ] ;
You can’t perform that action at this time.
0 commit comments