From 2cdbb660eac3fd588bf84a87738cacaae3eac003 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Thu, 20 Jun 2024 06:51:16 +0300 Subject: [PATCH 1/4] fix client.go --- client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.go b/client/client.go index 08927852..d31e273c 100644 --- a/client/client.go +++ b/client/client.go @@ -42,7 +42,7 @@ func New(cfg *Config) ProxyClient { } } -// Health indicates if server is operational; useful for event based awaits +// Health indicates if the server is operational; useful for event based awaits // when integration testing func (c *client) Health() error { url := c.cfg.URL + "/health" From bb1009ab846ca3224e78e65ded8b656b0302d25b Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Thu, 20 Jun 2024 06:51:34 +0300 Subject: [PATCH 2/4] fix common.go --- common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.go b/common/common.go index df8cb067..1da0df8b 100644 --- a/common/common.go +++ b/common/common.go @@ -14,7 +14,7 @@ var ( type Certificate = disperser.BlobInfo -// DomainType is a enumeration type for the different data domains for which a +// DomainType is an enumeration type for the different data domains for which a // blob can exist between type DomainType uint8 From b5270aa5c0c5810c5c7a1faa0662b03f8ee1f144 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Thu, 20 Jun 2024 06:52:21 +0300 Subject: [PATCH 3/4] fix server_test.go --- e2e/server_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/server_test.go b/e2e/server_test.go index 8e2946ec..3f02d8aa 100644 --- a/e2e/server_test.go +++ b/e2e/server_test.go @@ -31,7 +31,7 @@ func TestPlasmaClient(t *testing.T) { daClient := op_plasma.NewDAClient(ts.Address(), false, false) t.Log("Waiting for client to establish connection with plasma server...") - // wait for server to come online after starting + // wait for the server to come online after starting time.Sleep(5 * time.Second) // 1 - write arbitrary data to EigenDA From f1a82aa1d667b23e221a0b9ba668a4824559a216 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Thu, 20 Jun 2024 06:53:36 +0300 Subject: [PATCH 4/4] fix eigenda.go --- store/eigenda.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/eigenda.go b/store/eigenda.go index 8b4071e7..6a128e40 100644 --- a/store/eigenda.go +++ b/store/eigenda.go @@ -88,7 +88,7 @@ func (e EigenDAStore) Put(ctx context.Context, value []byte) (comm []byte, err e return bytes, nil } -// Entries is a no-op for EigenDA Store +// Entries are a no-op for EigenDA Store func (e EigenDAStore) Stats() *common.Stats { return nil }