Fix weights (#807)

This commit is contained in:
Gavin Wood
2020-01-29 14:03:31 +01:00
committed by GitHub
parent 04eae615b5
commit ed8a4c29bb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -178,7 +178,7 @@ decl_module! {
} }
/// Add a new claim, if you are root. /// Add a new claim, if you are root.
#[weight = SimpleDispatchInfo::FreeOperational] #[weight = SimpleDispatchInfo::FixedNormal(30_000)]
fn mint_claim(origin, fn mint_claim(origin,
who: EthereumAddress, who: EthereumAddress,
value: BalanceOf<T>, value: BalanceOf<T>,
+1 -1
View File
@@ -77,7 +77,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("kusama"), spec_name: create_runtime_str!("kusama"),
impl_name: create_runtime_str!("parity-kusama"), impl_name: create_runtime_str!("parity-kusama"),
authoring_version: 2, authoring_version: 2,
spec_version: 1043, spec_version: 1044,
impl_version: 0, impl_version: 0,
apis: RUNTIME_API_VERSIONS, apis: RUNTIME_API_VERSIONS,
}; };