From b9168fe4b2f359bebc21c94d689a5f90fad7fd28 Mon Sep 17 00:00:00 2001 From: colinlyguo Date: Fri, 22 Mar 2024 03:45:59 +0800 Subject: [PATCH] fix lint --- common/types/encoding/da.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/types/encoding/da.go b/common/types/encoding/da.go index 81a68c347..ddd554576 100644 --- a/common/types/encoding/da.go +++ b/common/types/encoding/da.go @@ -12,7 +12,10 @@ import ( type CodecVersion int const ( + // CodecV0 represents the version 0 of the encoder and decoder. CodecV0 CodecVersion = iota + + // CodecV1 represents the version 1 of the encoder and decoder. CodecV1 )