Skip to content

Commit

Permalink
Fix error msg (Layr-Labs#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix authored Feb 23, 2024
1 parent b744382 commit 863a778
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/grpc/churner/churner.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/proto/churner/churner.proto
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ message ChurnRequest {
// - If any of the quorum here has already been registered, this entire request
// will fail to proceed.
// - If any of the quorum fails to register, this entire request will fail.
// The IDs must be in range [0, 255].
// The IDs must be in range [0, 254].
repeated uint32 quorum_ids = 6;
}

Expand Down
2 changes: 1 addition & 1 deletion churner/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func run(ctx *cli.Context) error {

tx, err := eth.NewTransactor(logger, gethClient, config.BLSOperatorStateRetrieverAddr, config.EigenDAServiceManagerAddr)
if err != nil {
log.Fatalln("could create new transactor", err)
log.Fatalln("could not create new transactor", err)
}

cs := coreeth.NewChainState(tx, gethClient)
Expand Down

0 comments on commit 863a778

Please sign in to comment.