Fix sp-session typo (#4273)

* Fix sp-session typo

* Remove erroneous whitespaces

* Don't mess with the file, editor
This commit is contained in:
Andrew Jones
2019-12-02 19:24:25 +00:00
committed by Benjamin Kampmann
parent b6b48c4bc6
commit 4c2ba5b71f
10 changed files with 20 additions and 20 deletions
@@ -23,7 +23,7 @@ safe-mix = { version = "1.0.0", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { path = "../../../primitives/sr-api", default-features = false }
sp-runtime = { path = "../../../primitives/sr-primitives", default-features = false }
sp-sesssion = { path = "../../../primitives/session", default-features = false }
sp-session = { path = "../../../primitives/session", default-features = false }
sudo = { package = "pallet-sudo", path = "../../../frame/sudo", default-features = false }
support = { package = "frame-support", path = "../../../frame/support", default-features = false }
system = { package = "frame-system", path = "../../../frame/system", default-features = false }
@@ -56,7 +56,7 @@ std = [
"serde",
"sp-api/std",
"sp-runtime/std",
"sp-sesssion/std",
"sp-session/std",
"sudo/std",
"support/std",
"system/std",
@@ -350,7 +350,7 @@ impl_runtime_apis! {
}
}
impl sp_sesssion::SessionKeys<Block> for Runtime {
impl sp_session::SessionKeys<Block> for Runtime {
fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {
opaque::SessionKeys::generate(seed)
}