From b70863ea5e56af80bb8d09065cfe21c952f48dec Mon Sep 17 00:00:00 2001 From: Christian Langenbacher Date: Tue, 30 May 2023 15:48:15 +0200 Subject: [PATCH] remove outdated documentation --- core-primitives/utils/src/buffer.rs | 1 - core-primitives/utils/src/error.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/core-primitives/utils/src/buffer.rs b/core-primitives/utils/src/buffer.rs index 7541eff369..304c0ce947 100644 --- a/core-primitives/utils/src/buffer.rs +++ b/core-primitives/utils/src/buffer.rs @@ -39,7 +39,6 @@ pub fn write_slice_and_whitespace_pad( Ok(()) } -/// extrinsics factory error #[derive(Debug, thiserror::Error)] pub enum BufferError { #[error("Insufficient buffer size. Actual: {0}, required: {1}")] diff --git a/core-primitives/utils/src/error.rs b/core-primitives/utils/src/error.rs index ab1d8e151a..02042b8781 100644 --- a/core-primitives/utils/src/error.rs +++ b/core-primitives/utils/src/error.rs @@ -22,7 +22,6 @@ use std::boxed::Box; pub type Result = core::result::Result; -/// extrinsics factory error #[derive(Debug, thiserror::Error)] pub enum Error { #[error("Could not decode from hex data: {0}")]