Skip to content

Commit

Permalink
fix: address serialization in PayForBlobs event
Browse files Browse the repository at this point in the history
  • Loading branch information
rootulp committed Oct 30, 2023
1 parent a856af5 commit ffc7bc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/blob/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (k Keeper) PayForBlobs(goCtx context.Context, msg *types.MsgPayForBlobs) (*
ctx.GasMeter().ConsumeGas(gasToConsume, payForBlobGasDescriptor)

err := ctx.EventManager().EmitTypedEvent(
types.NewPayForBlobsEvent(sdk.AccAddress(msg.Signer).String(), msg.BlobSizes, msg.Namespaces),
types.NewPayForBlobsEvent(msg.Signer, msg.BlobSizes, msg.Namespaces),
)
if err != nil {
return &types.MsgPayForBlobsResponse{}, err
Expand Down

0 comments on commit ffc7bc1

Please sign in to comment.