From 38dfa18e8ccd805a43bd0b6d89735ad43bd32137 Mon Sep 17 00:00:00 2001 From: debris Date: Tue, 2 Feb 2016 16:35:11 +0100 Subject: [PATCH] gzip64res_to_json is no longer public --- ethcore/src/spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethcore/src/spec.rs b/ethcore/src/spec.rs index ed8b2dd8f..72da929ce 100644 --- a/ethcore/src/spec.rs +++ b/ethcore/src/spec.rs @@ -7,7 +7,7 @@ use pod_state::*; use null_engine::*; /// Converts file from base64 gzipped bytes to json -pub fn gzip64res_to_json(source: &[u8]) -> Json { +fn gzip64res_to_json(source: &[u8]) -> Json { // there is probably no need to store genesis in based64 gzip, // but that's what go does, and it was easy to load it this way let data = source.from_base64().expect("Genesis block is malformed!");