Skip to content
Open
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 op-service/signer/xlayer_auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func newECB(b cipher.Block) *ecb {

type ecbEncrypter ecb

// newECBEncrypt returns a BlockMode which encrypts in electronic code book
// newECBEncrypter returns a BlockMode which encrypts in electronic code book
// mode, using the given Block.
func newECBEncrypter(b cipher.Block) cipher.BlockMode {
return (*ecbEncrypter)(newECB(b))
Expand Down
2 changes: 1 addition & 1 deletion op-supervisor/supervisor/backend/rewinder/rewinder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ func TestRewindL1SingleBlockL2Impact(t *testing.T) {
s.verifyHeads(chainID, block3.ID(), "should have rewound to block3")
}

// TestL1RewindDeepL2Impact tests L1 reorgs affecting multiple L2 blocks.
// TestRewindL1DeepL2Impact tests L1 reorgs affecting multiple L2 blocks.
func TestRewindL1DeepL2Impact(t *testing.T) {
s := setupTestChain(t)
defer s.Close()
Expand Down
2 changes: 1 addition & 1 deletion op-supervisor/supervisor/backend/syncnode/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ func (m *ManagedNode) PullEvents(ctx context.Context) (pulledAny bool, err error
}
}

// onNodeEvents handles the incoming events from the node.
// onNodeEvent handles the incoming events from the node.
func (m *ManagedNode) onNodeEvent(ev *types.IndexingEvent) {
if m.resetCancel != nil {
m.log.Debug("Ignoring event during ongoing reset", "event", ev)
Expand Down