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)