Bump versions (#655)

* Bump version

* Update Cargo lock and bump runtime version

* Remove balance transfer disabler.
This commit is contained in:
Gavin Wood
2019-12-04 11:12:02 +01:00
committed by Bastian Köcher
parent ab2333da89
commit ec77d728b9
18 changed files with 78 additions and 78 deletions
+2 -2
View File
@@ -97,7 +97,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("kusama"),
impl_name: create_runtime_str!("parity-kusama"),
authoring_version: 2,
spec_version: 1026,
spec_version: 1027,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
};
@@ -130,7 +130,7 @@ impl SignedExtension for OnlyStakingAndClaims {
-> TransactionValidity
{
match call {
Call::Balances(_) | Call::Slots(_) | Call::Registrar(_)
Call::Slots(_) | Call::Registrar(_)
=> Err(InvalidTransaction::Custom(ValidityError::NoPermission.into()).into()),
_ => Ok(Default::default()),
}