From aa655a4c2b7470d6cbf64c9a07e2d8a4cfe41bf4 Mon Sep 17 00:00:00 2001 From: GoodDaisy <90915921+GoodDaisy@users.noreply.github.com> Date: Sun, 19 Nov 2023 15:31:27 +0800 Subject: [PATCH] chore: fix typos (#520) --- proto/types/tendermint/crypto/proof.proto | 2 +- settlement/dymension/dymension_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/types/tendermint/crypto/proof.proto b/proto/types/tendermint/crypto/proof.proto index 975df7685..7293ae63e 100755 --- a/proto/types/tendermint/crypto/proof.proto +++ b/proto/types/tendermint/crypto/proof.proto @@ -27,7 +27,7 @@ message DominoOp { } // ProofOp defines an operation used for calculating Merkle root -// The data could be arbitrary format, providing nessecary data +// The data could be arbitrary format, providing necessary data // for example neighbouring node hash message ProofOp { string type = 1; diff --git a/settlement/dymension/dymension_test.go b/settlement/dymension/dymension_test.go index c79f52fc0..12f04dee2 100644 --- a/settlement/dymension/dymension_test.go +++ b/settlement/dymension/dymension_test.go @@ -211,7 +211,7 @@ func TestPostBatch(t *testing.T) { assert.Equal(t, c.expectedError, healthStatusEvent.Error) atomic.AddInt64(&eventsReceivedCount, 1) case <-time.After(10 * time.Second): - t.Error("Didn't recieve health event") + t.Error("Didn't receive health event") } wg.Done() }() @@ -224,7 +224,7 @@ func TestPostBatch(t *testing.T) { assert.Equal(t, batchAcceptedEventData.EndHeight, batch.EndHeight) atomic.AddInt64(&eventsReceivedCount, 1) case <-time.After(10 * time.Second): - t.Error("Didn't recieve batch accepted event") + t.Error("Didn't receive batch accepted event") } wg.Done()