From 3120221860a47c48489b58f28f9bbf4ca0d4b6df Mon Sep 17 00:00:00 2001 From: drklee3 Date: Fri, 1 Nov 2024 11:51:22 -0700 Subject: [PATCH] Fix EIP712 comment typo --- app/ante/eip712_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ante/eip712_test.go b/app/ante/eip712_test.go index e6a6c003d..aa79ee238 100644 --- a/app/ante/eip712_test.go +++ b/app/ante/eip712_test.go @@ -178,7 +178,7 @@ func (suite *EIP712TestSuite) createTestEIP712CosmosTxBuilderWithDomain( customDomainTypes, ) - // Sign sighHash + // Sign sigHash keyringSigner := tests.NewSigner(priv) signature, pubKey, err := keyringSigner.SignByAddress(from, sigHash) suite.Require().NoError(err)