[beta] Fix ethsign (#5600)

* Fix ethsign in beta.

* Fix tests.

* Fix compilation.

* CI fix

remove kcov
This commit is contained in:
Tomasz Drwięga
2017-05-18 14:50:17 +02:00
committed by Gav Wood
parent 4d9f13196f
commit 8dfc10ede9
14 changed files with 54 additions and 57 deletions

View File

@@ -57,8 +57,8 @@ mod tests {
#[test]
fn test_brain() {
let words = "this is sparta!".to_owned();
let first_keypair = Brain(words.clone()).generate().unwrap();
let second_keypair = Brain(words.clone()).generate().unwrap();
let first_keypair = Brain::new(words.clone()).generate().unwrap();
let second_keypair = Brain::new(words.clone()).generate().unwrap();
assert_eq!(first_keypair.secret(), second_keypair.secret());
}
}