From a3ee98f727770cc4b2a963f2ce537f738168d58a Mon Sep 17 00:00:00 2001 From: Dima K Date: Fri, 14 Jun 2024 15:15:11 -0700 Subject: [PATCH] Update x/proof/keeper/msg_server_submit_proof.go Co-authored-by: Daniel Olshansky --- x/proof/keeper/msg_server_submit_proof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/proof/keeper/msg_server_submit_proof.go b/x/proof/keeper/msg_server_submit_proof.go index cd6bc8ce1..59809da43 100644 --- a/x/proof/keeper/msg_server_submit_proof.go +++ b/x/proof/keeper/msg_server_submit_proof.go @@ -167,7 +167,7 @@ func (k msgServer) SubmitProof(ctx context.Context, msg *types.MsgSubmitProof) ( } logger.Info("successfully validated relay request") - // Make sure tha the supplier address in the proof matches the one in the relay request. + // Make sure that the supplier address in the proof matches the one in the relay request. if supplierAddr != relayReq.Meta.SupplierAddress { return nil, status.Error(codes.FailedPrecondition, "supplier address mismatch") }