Revision b758f261c13bbaa9cffceb5230d12561ba2c7489 authored by William Banfield on 28 September 2021, 21:41:27 UTC, committed by William Banfield on 28 September 2021, 21:41:27 UTC
1 parent 750f709
Raw File
encoding_helper.go
package types

import (
	gogotypes "github.com/gogo/protobuf/types"

	"github.com/tendermint/tendermint/libs/bytes"
)

// cdcEncode returns nil if the input is nil, otherwise returns
// proto.Marshal(<type>Value{Value: item})
func cdcEncode(item interface{}) []byte {
	if item != nil && !isTypedNil(item) && !isEmpty(item) {
		switch item := item.(type) {
		case string:
			i := gogotypes.StringValue{
				Value: item,
			}
			bz, err := i.Marshal()
			if err != nil {
				return nil
			}
			return bz
		case int64:
			i := gogotypes.Int64Value{
				Value: item,
			}
			bz, err := i.Marshal()
			if err != nil {
				return nil
			}
			return bz
		case bytes.HexBytes:
			i := gogotypes.BytesValue{
				Value: item,
			}
			bz, err := i.Marshal()
			if err != nil {
				return nil
			}
			return bz
		default:
			return nil
		}
	}

	return nil
}
back to top