aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwoodser <13068859+woodser@users.noreply.github.com>2026-06-08 17:53:36 -0400
committerwoodser <13068859+woodser@users.noreply.github.com>2026-06-08 17:54:22 -0400
commitad72a6c25342bc1694a787ba583e44beebea75e9 (patch)
treef5a838224807102392c341577270b26b874c1c09 /src
parenta304801aee7da7e49b02a2bd218b58dd5161351d (diff)
downloadmonzero-core-ad72a6c25342bc1694a787ba583e44beebea75e9.tar.gz
monzero-core-ad72a6c25342bc1694a787ba583e44beebea75e9.tar.xz
monzero-core-ad72a6c25342bc1694a787ba583e44beebea75e9.zip
fix typo in hashchain bounds error
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet_errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_errors.h b/src/wallet/wallet_errors.h
index c54cd3499..e0a767159 100644
--- a/src/wallet/wallet_errors.h
+++ b/src/wallet/wallet_errors.h
@@ -440,7 +440,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")
{
}