diff --git a/x/rollup/keeper/deposits.go b/x/rollup/keeper/deposits.go index e653e35c..6da2191c 100644 --- a/x/rollup/keeper/deposits.go +++ b/x/rollup/keeper/deposits.go @@ -43,7 +43,7 @@ func (k *Keeper) setL1BlockHistory(ctx context.Context, info *derive.L1BlockInfo return nil } -// processL1AttributesTx processes the L1 Attributes deposit tx and returns the L1 block info. +// processL1AttributesTx processes the L1 Attributes tx and returns the L1 block info. func (k *Keeper) processL1AttributesTx(ctx sdk.Context, txBytes []byte) (*derive.L1BlockInfo, error) { //nolint:gocritic // hugeParam var tx ethtypes.Transaction if err := tx.UnmarshalBinary(txBytes); err != nil { diff --git a/x/rollup/keeper/msg_server.go b/x/rollup/keeper/msg_server.go index 7b5e238c..c92aa377 100644 --- a/x/rollup/keeper/msg_server.go +++ b/x/rollup/keeper/msg_server.go @@ -28,7 +28,7 @@ func (k *Keeper) ApplyL1Txs(goCtx context.Context, msg *types.MsgApplyL1Txs) (*t ctx.Logger().Debug("Processing L1 txs", "txCount", len(msg.TxBytes)) - // process L1 system deposit tx and get L1 block info + // process L1 attributes tx and get L1 block info l1blockInfo, err := k.processL1AttributesTx(ctx, msg.TxBytes[0]) if err != nil { ctx.Logger().Error("Failed to process L1 system deposit tx", "err", err)