Fix compiler warnig ()

This commit is contained in:
Quentin Le Sceller 2020-06-10 12:41:44 -04:00 committed by GitHub
parent 20e5c1910b
commit e7f04240fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ use std::fmt;
lazy_static! {
/// List of bip39 words
pub static ref WORDS: Vec<String> = { include_str!("wordlists/en.txt").split_whitespace().map(|s| s.into()).collect() };
pub static ref WORDS: Vec<String> = include_str!("wordlists/en.txt").split_whitespace().map(|s| s.into()).collect();
}
/// An error that might occur during mnemonic decoding