Skip to content
Snippets Groups Projects
Commit c4950345 authored by Gav's avatar Gav
Browse files

Fix warnings.

parent 96a200b1
Branches
No related merge requests found
...@@ -131,10 +131,9 @@ mod tests { ...@@ -131,10 +131,9 @@ mod tests {
use super::*; use super::*;
use runtime_io::{with_externalities, twox_128, TestExternalities}; use runtime_io::{with_externalities, twox_128, TestExternalities};
use codec::{Joiner, KeyedVec, Slicable}; use codec::{Joiner, KeyedVec};
use runtime_support::{one, two}; use runtime_support::{one, two};
use primitives::hexdisplay::HexDisplay; use ::{Header, Digest};
use ::{Header, Digest, UncheckedTransaction, Transaction};
fn new_test_ext() -> TestExternalities { fn new_test_ext() -> TestExternalities {
let one = one(); let one = one();
...@@ -153,9 +152,6 @@ mod tests { ...@@ -153,9 +152,6 @@ mod tests {
#[test] #[test]
fn block_import_works() { fn block_import_works() {
let one = one();
let two = two();
let mut t = new_test_ext(); let mut t = new_test_ext();
let h = Header { let h = Header {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment