Fix string typo: "develoopment" -> "development" (#7874)

This commit is contained in:
Lexi Brent 2018-02-13 17:52:05 +11:00 committed by Svyatoslav Nikolsky
parent a385f9a649
commit 006b2f3564
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ fn insert_dev_account(account_provider: &AccountProvider) {
Ok(address) => {
let _ = account_provider.set_account_name(address.clone(), "Development Account".into());
let _ = account_provider.set_account_meta(address, ::serde_json::to_string(&(vec![
("description", "Never use this account outside of develoopment chain!"),
("description", "Never use this account outside of development chain!"),
("passwordHint","Password is empty string"),
].into_iter().collect::<::std::collections::HashMap<_,_>>())).expect("Serialization of hashmap does not fail."));
},