diff --git a/indexer/database/bridge_transfers.go b/indexer/database/bridge_transfers.go index 51bf48d990..4dd2060360 100644 --- a/indexer/database/bridge_transfers.go +++ b/indexer/database/bridge_transfers.go @@ -307,7 +307,7 @@ type L2BridgeWithdrawalsResponse struct { HasNextPage bool } -// L2BridgeDepositsByAddress retrieves a list of deposits initiated by the specified address, coupled with the L1/L2 transaction hashes +// L2BridgeWithdrawalsByAddress retrieves a list of deposits initiated by the specified address, coupled with the L1/L2 transaction hashes // that complete the bridge transaction. The hashes that correspond with the Bedrock multi-step withdrawal process are also surfaced func (db *bridgeTransfersDB) L2BridgeWithdrawalsByAddress(address common.Address, cursor string, limit int) (*L2BridgeWithdrawalsResponse, error) { if limit <= 0 { diff --git a/op-batcher/batcher/channel_manager_test.go b/op-batcher/batcher/channel_manager_test.go index e029e69e65..1436bb639c 100644 --- a/op-batcher/batcher/channel_manager_test.go +++ b/op-batcher/batcher/channel_manager_test.go @@ -283,7 +283,7 @@ func ChannelManagerCloseNoPendingChannel(t *testing.T, batchType uint) { require.ErrorIs(err, io.EOF, "Expected closed channel manager to return no new tx data") } -// ChannelManagerCloseNoPendingChannel ensures that the channel manager +// ChannelManagerClosePendingChannel ensures that the channel manager // can gracefully close with a pending channel, and will not produce any // new channel frames after this point. func ChannelManagerClosePendingChannel(t *testing.T, batchType uint) { diff --git a/op-batcher/compressor/shadow_compressor_test.go b/op-batcher/compressor/shadow_compressor_test.go index eb0efea0f1..383ee98aef 100644 --- a/op-batcher/compressor/shadow_compressor_test.go +++ b/op-batcher/compressor/shadow_compressor_test.go @@ -108,7 +108,7 @@ func TestShadowCompressor(t *testing.T) { } } -// TestBoundInaccruateForLargeRandomData documents where our bounding heuristic starts to fail +// TestBoundInaccurateForLargeRandomData documents where our bounding heuristic starts to fail // (writing at least 128k of random data) func TestBoundInaccurateForLargeRandomData(t *testing.T) { const sizeLimit = 1 << 17 diff --git a/op-chain-ops/crossdomain/message_test.go b/op-chain-ops/crossdomain/message_test.go index 18b640a7ce..5a9bcc6da6 100644 --- a/op-chain-ops/crossdomain/message_test.go +++ b/op-chain-ops/crossdomain/message_test.go @@ -55,7 +55,7 @@ func TestEncode(t *testing.T) { }) } -// TestEncode tests the hash of a CrossDomainMessage. The assertion was +// TestHash tests the hash of a CrossDomainMessage. The assertion was // created using solidity. func TestHash(t *testing.T) { t.Parallel()