From de842e12181980f01f918b1242723f254cd592bb Mon Sep 17 00:00:00 2001 From: gladcow Date: Fri, 1 Nov 2019 17:11:26 +0300 Subject: [PATCH] Update error message --- libraries/chain/protocol/account.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/protocol/account.cpp b/libraries/chain/protocol/account.cpp index 08d5a566..6721bb07 100644 --- a/libraries/chain/protocol/account.cpp +++ b/libraries/chain/protocol/account.cpp @@ -184,7 +184,7 @@ void account_options::validate() const FC_ASSERT( needed_witnesses == 0, "May not specify fewer witnesses than the number voted for."); FC_ASSERT( needed_committee == 0, - "May not specify committee members than the number voted for."); + "May not specify fewer committee members than the number voted for."); FC_ASSERT( needed_sons == 0, "May not specify fewer SONs than the number voted for."); }