From de8853e27d6b074064ddc372c0550b84d1eeaa26 Mon Sep 17 00:00:00 2001 From: Robert Habermeier Date: Tue, 23 Aug 2016 19:21:03 +0200 Subject: [PATCH] add warning to snapshot restoration CLI --- parity/snapshot.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/parity/snapshot.rs b/parity/snapshot.rs index 2a3c12567a0..14ba7623b17 100644 --- a/parity/snapshot.rs +++ b/parity/snapshot.rs @@ -107,6 +107,7 @@ impl SnapshotCommand { let (service, _panic_handler) = try!(self.start_service()); warn!("Snapshot restoration is experimental and the format may be subject to change."); + warn!("On encountering an unexpected error, please ensure that you have a recent snapshot."); let snapshot = service.snapshot_service(); let reader = PackedReader::new(Path::new(&file))