From c1860afd249234709d0470b0d525e21e414804f0 Mon Sep 17 00:00:00 2001 From: David Forstenlechner Date: Thu, 4 Jan 2024 16:48:21 +0100 Subject: [PATCH] Rustfmt fix --- crates/util/EIP-712/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/util/EIP-712/src/error.rs b/crates/util/EIP-712/src/error.rs index 41b77cb3a..78861cd19 100644 --- a/crates/util/EIP-712/src/error.rs +++ b/crates/util/EIP-712/src/error.rs @@ -14,8 +14,8 @@ // You should have received a copy of the GNU General Public License // along with OpenEthereum. If not, see . -use validator::{ValidationErrors, ValidationErrorsKind}; use thiserror::Error; +use validator::{ValidationErrors, ValidationErrorsKind}; pub(crate) type Result = ::std::result::Result;