From 4d8e81a1f51e3de5e7642928b06a18739f597f39 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Fri, 11 Mar 2022 12:00:56 -0500 Subject: [PATCH] error message change --- abci/types/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abci/types/types.go b/abci/types/types.go index 2fc1d62d0..65b0f6654 100644 --- a/abci/types/types.go +++ b/abci/types/types.go @@ -275,7 +275,7 @@ func (rpp *ResponsePrepareProposal) Validate(maxSizeBytes int64, otxs [][]byte) } } else { if tr.Action == TxRecord_REMOVED || tr.Action == TxRecord_UNMODIFIED { - return fmt.Errorf("new transaction incorrectly marked as %s", tr.Action.String()) + return fmt.Errorf("unmodified transaction incorrectly marked as %s", tr.Action.String()) } } if tr.Action == TxRecord_UNKNOWN {