-
Notifications
You must be signed in to change notification settings - Fork 84
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
Conversation
settlement/local/local.go
Outdated
@@ -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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
settlement/grpc/grpc.go
Outdated
@@ -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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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) |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
Co-authored-by: Michael Tsitrin <[email protected]>
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:
godoc
commentsFor Reviewer:
After reviewer approval: