https://github.com/tendermint/tendermint
Raw File
Tip revision: 519f82e2d3052c70fe4863d5a943029a42659544 authored by marbar3778 on 15 December 2021, 15:54:48 UTC
bash
Tip revision: 519f82e
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