Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error msg #259

Merged
merged 4 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤣

log.Fatalln("could not create new transactor", err)
}

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