diff --git a/rolling-shutter/app/app.go b/rolling-shutter/app/app.go index 536c3b1d..f32f00c1 100644 --- a/rolling-shutter/app/app.go +++ b/rolling-shutter/app/app.go @@ -800,7 +800,7 @@ func numRequiredTransitionValidators(config *BatchConfig) uint64 { return defenders } -// persistToDisk stores the ShutterApp on disk. This method first writes to a temporary file and +// PersistToDisk stores the ShutterApp on disk. This method first writes to a temporary file and // renames the file later. Most probably this will not work on windows! func (app *ShutterApp) PersistToDisk() error { log.Info().Int64("height", app.LastBlockHeight).Msg("persisting state to disk") diff --git a/rolling-shutter/keyperimpl/gnosis/keyper.go b/rolling-shutter/keyperimpl/gnosis/keyper.go index c6d12141..6a93d96a 100644 --- a/rolling-shutter/keyperimpl/gnosis/keyper.go +++ b/rolling-shutter/keyperimpl/gnosis/keyper.go @@ -187,7 +187,7 @@ func NewKeyper(kpr *Keyper, messagingMiddleware *MessagingMiddleware) (*keyper.K return core, err } -// initSequencerSycer initializes the sequencer syncer if the keyper is known to be a member of a +// initSequencerSyncer initializes the sequencer syncer if the keyper is known to be a member of a // keyper set. Otherwise, the syncer will only be initialized once such a keyper set is observed to // be added, as only then we will know which eon(s) we are responsible for. func (kpr *Keyper) initSequencerSyncer(ctx context.Context) error { diff --git a/rolling-shutter/keyperimpl/shutterservice/keyper.go b/rolling-shutter/keyperimpl/shutterservice/keyper.go index bdd0b724..513cf6ca 100644 --- a/rolling-shutter/keyperimpl/shutterservice/keyper.go +++ b/rolling-shutter/keyperimpl/shutterservice/keyper.go @@ -136,7 +136,7 @@ func NewKeyper(kpr *Keyper, messagingMiddleware *MessagingMiddleware) (*keyper.K ) } -// initRegistrySycer initializes the registry syncer if the keyper is known to be a member of a +// initRegistrySyncer initializes the registry syncer if the keyper is known to be a member of a // keyper set. Otherwise, the syncer will only be initialized once such a keyper set is observed to // be added, as only then we will know which eon(s) we are responsible for. func (kpr *Keyper) initRegistrySyncer(ctx context.Context) error { diff --git a/rolling-shutter/p2p/p2p_test.go b/rolling-shutter/p2p/p2p_test.go index e359d56e..b8a1c5ce 100644 --- a/rolling-shutter/p2p/p2p_test.go +++ b/rolling-shutter/p2p/p2p_test.go @@ -24,7 +24,7 @@ func init() { var ErrTestComplete = errors.New("test complete") -// TestStartNetworkNode test that we can init two p2p nodes and make them send/receive messages. +// TestStartNetworkNodeIntegration test that we can init two p2p nodes and make them send/receive messages. func TestStartNetworkNodeIntegration(t *testing.T) { //nolint:funlen if testing.Short() { t.Skip("skipping integration test")