From 06d3258d12d4bcaf2aaeeda63b3e3a6619d40dcb Mon Sep 17 00:00:00 2001 From: woodser <13068859+woodser@users.noreply.github.com> Date: Mon, 8 Jun 2026 17:53:36 -0400 Subject: [PATCH] fix typo in hashchain bounds error --- src/wallet/wallet_errors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet_errors.h b/src/wallet/wallet_errors.h index acfe703bd..1ca1b21e4 100644 --- a/src/wallet/wallet_errors.h +++ b/src/wallet/wallet_errors.h @@ -442,7 +442,7 @@ namespace tools struct out_of_hashchain_bounds_error : public refresh_error { explicit out_of_hashchain_bounds_error(std::string&& loc) - : refresh_error(std::move(loc), "Index out of bounds of of hashchain") + : refresh_error(std::move(loc), "Index out of bounds of hashchain") { }