From 1a4c5c338d3551503ac0547ec301f6f038ec12cd Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Wed, 10 Apr 2024 22:24:13 -0500 Subject: [PATCH] fixup error message --- ethereum/contracts/core/Forum.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/contracts/core/Forum.sol b/ethereum/contracts/core/Forum.sol index 73156f1..f285c53 100644 --- a/ethereum/contracts/core/Forum.sol +++ b/ethereum/contracts/core/Forum.sol @@ -53,7 +53,7 @@ contract Forum is Reputation { ); require( totalCitationWeightNeg >= -100, - "Sum of positive citations must be >= -100" + "Sum of negative citations must be >= -100" ); emit PostAdded(postIndex); }