From adccfaf2b89b8e3eef711a942260335ca259f608 Mon Sep 17 00:00:00 2001 From: David Date: Tue, 17 Dec 2024 16:28:54 +0800 Subject: [PATCH] feat: go fmt --- packages/taiko-client/bindings/encoding/input.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/taiko-client/bindings/encoding/input.go b/packages/taiko-client/bindings/encoding/input.go index c51c0fa1c27..b0d9fab8c8a 100644 --- a/packages/taiko-client/bindings/encoding/input.go +++ b/packages/taiko-client/bindings/encoding/input.go @@ -298,7 +298,7 @@ var ( stringType, _ = abi.NewType("string", "TAIKO_DIFFICULTY", nil) uint64Type, _ = abi.NewType("uint64", "local.b.numBlocks", nil) difficultyCalculationInputArgs = abi.Arguments{{Type: stringType}, {Type: uint64Type}} - proveBlocksInputArgs = abi.Arguments{ + proveBlocksInputArgs = abi.Arguments{ {Name: "TaikoData.BlockMetadata", Type: blockMetadataV2ComponentsType}, {Name: "TaikoData.Transition", Type: transitionComponentsType}, } @@ -481,7 +481,6 @@ func EncodeProveBlocksBatchProof( return input, nil } - // UnpackTxListBytes unpacks the input data of a TaikoL1.proposeBlock transaction, and returns the txList bytes. func UnpackTxListBytes(txData []byte) ([]byte, error) { method, err := TaikoL1ABI.MethodById(txData)