From 18653bf650605f67a5cff84422a5bd6187772ce4 Mon Sep 17 00:00:00 2001 From: Nate Beauregard Date: Thu, 19 Sep 2024 16:08:38 -0400 Subject: [PATCH] Remove json marshaling TODO --- x/rollup/keeper/deposits.go | 1 - 1 file changed, 1 deletion(-) diff --git a/x/rollup/keeper/deposits.go b/x/rollup/keeper/deposits.go index aeafdea6..56a6fbe9 100644 --- a/x/rollup/keeper/deposits.go +++ b/x/rollup/keeper/deposits.go @@ -29,7 +29,6 @@ import ( // Persisted data conforms to optimism specs on L1 attributes: // https://github.com/ethereum-optimism/optimism/blob/develop/specs/deposits.md#l1-attributes-predeployed-contract func (k *Keeper) setL1BlockInfo(ctx sdk.Context, info derive.L1BlockInfo) error { //nolint:gocritic - // TODO: use binary marshaling instead of json infoBytes, err := json.Marshal(info) if err != nil { return types.WrapError(err, "marshal L1 block info")