Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix committed Jul 19, 2024
1 parent ce28116 commit 9f3cbdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/clients/node_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package clients

import (
"context"
"errors"
"time"

"github.com/Layr-Labs/eigenda/api/grpc/node"
Expand Down Expand Up @@ -129,7 +130,7 @@ func (c client) GetChunks(
case node.ChunkEncoding_UNKNOWN:
chunksChan <- RetrievedChunks{
OperatorID: opID,
Err: err,
Err: errors.New("UNKNOWN chunk encoding format"),
Chunks: nil,
}
}
Expand Down

0 comments on commit 9f3cbdb

Please sign in to comment.