From 5013bd50ca9381baed28691ba86510d5c66236d4 Mon Sep 17 00:00:00 2001 From: Afanti <127061691+threewebcode@users.noreply.github.com> Date: Sat, 20 Apr 2024 05:16:22 +0800 Subject: [PATCH] fix: typo in the code comments [skip CI] --- op-node/node/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-node/node/api.go b/op-node/node/api.go index d6252c84540e4..cb60d22d911b3 100644 --- a/op-node/node/api.go +++ b/op-node/node/api.go @@ -75,7 +75,7 @@ func (n *adminAPI) SequencerActive(ctx context.Context) (bool, error) { return n.dr.SequencerActive(ctx) } -// PostUnsafePayload is a special API that allow posting an unsafe payload to the L2 derivation pipeline. +// PostUnsafePayload is a special API that allows posting an unsafe payload to the L2 derivation pipeline. // It should only be used by op-conductor for sequencer failover scenarios. // TODO(ethereum-optimism/optimism#9064): op-conductor Dencun changes. func (n *adminAPI) PostUnsafePayload(ctx context.Context, envelope *eth.ExecutionPayloadEnvelope) error {