From d267517dbd24b501415a8dcbb0f937504b093515 Mon Sep 17 00:00:00 2001 From: Daniela Brozzoni Date: Fri, 3 Mar 2023 17:33:47 +0100 Subject: [PATCH] NewError implements StdError (fix typo) --- crates/bdk/src/wallet/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bdk/src/wallet/mod.rs b/crates/bdk/src/wallet/mod.rs index ca37de12..340705a5 100644 --- a/crates/bdk/src/wallet/mod.rs +++ b/crates/bdk/src/wallet/mod.rs @@ -182,8 +182,8 @@ where } } -#[cfg(feautre = "std")] -impl std::error::Error for NewError

{} +#[cfg(feature = "std")] +impl std::error::Error for NewError

{} impl Wallet { /// Create a wallet from a `descriptor` (and an optional `change_descriptor`) and load related