From da757fa387985709e3604adb8fcc084d9910a17e Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 20 Feb 2023 11:08:07 +0300 Subject: [PATCH] network: fix grammar typo in the error message --- pkg/network/payload/notary_request.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/network/payload/notary_request.go b/pkg/network/payload/notary_request.go index afc8f813b..956b00e71 100644 --- a/pkg/network/payload/notary_request.go +++ b/pkg/network/payload/notary_request.go @@ -122,7 +122,7 @@ func (r *P2PNotaryRequest) isValid() error { return errors.New("fallback transaction should have one Conflicts attribute") } if conflicts[0].Value.(*transaction.Conflicts).Hash != r.MainTransaction.Hash() { - return errors.New("fallback transaction does not conflicts with the main transaction") + return errors.New("fallback transaction does not conflict with the main transaction") } nKeysFallback := r.FallbackTransaction.GetAttributes(transaction.NotaryAssistedT) if len(nKeysFallback) == 0 {