mirror of
https://github.com/mimblewimble/grin.git
synced 2025-05-07 17:51:14 +03:00
Fix compiler warnig (#3345)
This commit is contained in:
parent
20e5c1910b
commit
e7f04240fb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue