From 46c26360d76edb60f1b177457d0aade625cfd165 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Wed, 28 Aug 2024 12:03:03 +0200 Subject: [PATCH] fix error in exception message --- src/interaction/validate/RegisterAddressRole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interaction/validate/RegisterAddressRole.cpp b/src/interaction/validate/RegisterAddressRole.cpp index 004a689..503eeb9 100644 --- a/src/interaction/validate/RegisterAddressRole.cpp +++ b/src/interaction/validate/RegisterAddressRole.cpp @@ -139,7 +139,7 @@ namespace gradido { filter.searchDirection = blockchain::SearchDirection::ASC; auto communityRoot = blockchain->findOne(filter); if (!communityRoot) { - throw BlockchainOrderException("cannot finde community root transaction before register address"); + throw BlockchainOrderException("cannot find community root transaction before register address"); } bool foundCommunityRootSigner = false;