From c6e83caddf6306caf94e690e48bf7c578884ad1b Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Fri, 10 Jun 2016 13:33:43 +0200 Subject: [PATCH] fix warning --- ethcore/src/pv64/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcore/src/pv64/mod.rs b/ethcore/src/pv64/mod.rs index 62572c2a4..39b46eda7 100644 --- a/ethcore/src/pv64/mod.rs +++ b/ethcore/src/pv64/mod.rs @@ -100,7 +100,7 @@ impl<'a> BlockChunker<'a> { file_path.push(hash.hex()); let mut file = File::create(file_path).unwrap(); - file.write_all(&raw_data); + file.write_all(&raw_data).unwrap(); hash }