From 47edfa136930c58d3cc7d53fb074bd9aaf0025e4 Mon Sep 17 00:00:00 2001 From: Michael Jeffrey Date: Fri, 8 Nov 2024 11:30:34 -0700 Subject: [PATCH] no longer writing keypairs, remove IO error variant --- helium-lib/src/error.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/helium-lib/src/error.rs b/helium-lib/src/error.rs index 59339adb..f31d2931 100644 --- a/helium-lib/src/error.rs +++ b/helium-lib/src/error.rs @@ -72,8 +72,6 @@ impl Error { #[derive(Debug, Error)] pub enum EncodeError { - #[error("io: {0}")] - Io(#[from] std::io::Error), #[error("proto: {0}")] Proto(#[from] helium_proto::EncodeError), #[error("bincode: {0}")]