From fd0e7831762a539821fe47df568d8defe1438e29 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Fri, 17 Oct 2025 16:16:54 -0300 Subject: [PATCH] remove unused error type --- common/src/error.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/common/src/error.rs b/common/src/error.rs index 825eb7e..f8a3e3e 100644 --- a/common/src/error.rs +++ b/common/src/error.rs @@ -51,9 +51,3 @@ pub enum ExecutionFailureKind { InsufficientFundsError, } -#[derive(Debug, thiserror::Error)] -pub enum TransactionSignatureError { - #[error("invalid signature for transaction body")] - InvalidSignature, -} -