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

feat(manager): create sequencer events populate sequencers list #1102

Merged
merged 8 commits into from
Oct 8, 2024

Conversation

srene
Copy link
Contributor

@srene srene commented Sep 27, 2024

PR Standards

Opening a pull request should be able to meet the following requirements

--

PR naming convention: https://hackmd.io/@nZpxHZ0CT7O5ngTp0TP9mg/HJP_jrm7A


Close #1015

<-- Briefly describe the content of this pull request -->

For Author:

  • Targeted PR against correct branch
  • included the correct type prefix in the PR title
  • Linked to Github issue with discussion and accepted design
  • Targets only one github issue
  • Wrote unit and integration tests
  • All CI checks have passed
  • Added relevant godoc comments

For Reviewer:

  • confirmed the correct type prefix in the PR title
  • Reviewers assigned
  • confirmed all author checklist items have been addressed

After reviewer approval:

  • In case targets main branch, PR should be squashed and merged.
  • In case PR targets a release branch, PR should be rebased.

@srene srene self-assigned this Sep 27, 2024
@srene srene requested a review from a team as a code owner September 27, 2024 15:48
@@ -206,6 +206,11 @@ func (c *Client) GetProposer() *types.Sequencer {
return types.NewSequencer(tmPubKey, pubKey.Address().String())
}

// GetSequencerByAddress returns all sequencer information by its address. Not implemented since it will not be used in mock SL
func (c *Client) GetSequencerByAddress(address string) (types.Sequencer, error) {
return types.Sequencer{}, nil
Copy link
Contributor

Choose a reason for hiding this comment

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

better to return error with empty sequencer?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

added panic because it shouldnt be called from mock sl

@@ -228,6 +228,11 @@ func (c *Client) GetProposer() *types.Sequencer {
return types.NewSequencer(tmPubKey, pubKey.Address().String())
}

// GetSequencerByAddress returns all sequencer information by its address. Not implemented since it will not be used in grpc SL
func (c *Client) GetSequencerByAddress(address string) (types.Sequencer, error) {
return types.Sequencer{}, nil
Copy link
Contributor

Choose a reason for hiding this comment

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

better to return error with empty sequencer?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

added panic because it shouldnt be called from grpc sl

block/manager.go Outdated
@@ -194,6 +194,7 @@ func (m *Manager) Start(ctx context.Context) error {
/* ----------------------------- sequencer mode ----------------------------- */
// Subscribe to batch events, to update last submitted height in case batch confirmation was lost. This could happen if the sequencer crash/restarted just after submitting a batch to the settlement and by the time we query the last batch, this batch wasn't accepted yet.
go uevent.MustSubscribe(ctx, m.Pubsub, "updateSubmittedHeightLoop", settlement.EventQueryNewSettlementBatchAccepted, m.UpdateLastSubmittedHeight, m.logger)
go uevent.MustSubscribe(ctx, m.Pubsub, "newBondedSequencer", settlement.EventQueryNewBondedSequencer, m.UpdateSequencerSet, m.logger)
Copy link
Contributor

Choose a reason for hiding this comment

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

what about full node mode? probably required there as well

Copy link
Contributor Author

Choose a reason for hiding this comment

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

true, moved to before to be called by sequencers and full-nodes

@srene srene requested a review from mtsitrin October 8, 2024 07:50
@mtsitrin mtsitrin merged commit e0adc4c into main Oct 8, 2024
6 checks passed
@mtsitrin mtsitrin deleted the srene/1015-update-sequenecr-list branch October 8, 2024 08:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

feat(rotation): add sequencers pubkey to sequencer set on creation
2 participants