From 09cecf50a7d0ea6f5ce733f76035468099b464af Mon Sep 17 00:00:00 2001 From: brian-js Date: Tue, 29 Mar 2016 15:41:40 +0100 Subject: [PATCH] Revert Timeout error. --- CHANGELOG.md | 3 --- Cargo.toml | 2 +- src/client_errors.rs | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78c39d4a5..6df63db75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,5 @@ # Safe Network Common - Change Log -## [0.1.0] -- Timeout error added to MutationError. - ## [0.0.1] - Core-Vault error communication module - Shared constants - type tags for session packet and DNS diff --git a/Cargo.toml b/Cargo.toml index 9168919b4..71e4a668a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "GPL-3.0" name = "safe_network_common" readme = "README.md" repository = "https://github.com/maidsafe/safe_network_common" -version = "0.1.0" +version = "0.0.1" [dependencies] maidsafe_utilities = "~0.4.0" diff --git a/src/client_errors.rs b/src/client_errors.rs index a0cbc4d6c..ce90a5304 100644 --- a/src/client_errors.rs +++ b/src/client_errors.rs @@ -48,6 +48,4 @@ pub enum MutationError { /// Unknown error - Errors occuring at Vault level which have no bearing on clients, eg. /// misc errors like serialisation failure, db failure etc Unknown, - /// Request timed-out waiting for response. - Timeout, }