From c642bebeb7c452cdb81977f4fb9e36f2b1872be7 Mon Sep 17 00:00:00 2001 From: Afounso Souza Date: Sun, 29 Jun 2025 21:23:29 +0200 Subject: [PATCH] fix typo in error message --- bitcoin/src/bip32.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/bip32.rs b/bitcoin/src/bip32.rs index b7659e072..847335b4f 100644 --- a/bitcoin/src/bip32.rs +++ b/bitcoin/src/bip32.rs @@ -672,7 +672,7 @@ impl From for IndexOutOfRangeError { impl fmt::Display for IndexOutOfRangeError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "index {} out of range [0, 2^31 - 1] (do you have an hardened child number, rather than an index?)", self.index) + write!(f, "index {} out of range [0, 2^31 - 1] (do you have a hardened child number, rather than an index?)", self.index) } }