mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-23 09:41:38 +00:00
Remove Bytes, just use []byte; Use protobuf for KVPair/KI64Pair
This commit is contained in:
@ -1,53 +0,0 @@
|
||||
package common
|
||||
|
||||
import (
|
||||
"encoding/hex"
|
||||
"fmt"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// The main purpose of Bytes is to enable HEX-encoding for json/encoding.
|
||||
type Bytes []byte
|
||||
|
||||
// Marshal needed for protobuf compatibility
|
||||
func (b Bytes) Marshal() ([]byte, error) {
|
||||
return b, nil
|
||||
}
|
||||
|
||||
// Unmarshal needed for protobuf compatibility
|
||||
func (b *Bytes) Unmarshal(data []byte) error {
|
||||
*b = data
|
||||
return nil
|
||||
}
|
||||
|
||||
// This is the point of Bytes.
|
||||
func (b Bytes) MarshalJSON() ([]byte, error) {
|
||||
s := strings.ToUpper(hex.EncodeToString(b))
|
||||
jb := make([]byte, len(s)+2)
|
||||
jb[0] = '"'
|
||||
copy(jb[1:], []byte(s))
|
||||
jb[1] = '"'
|
||||
return jb, nil
|
||||
}
|
||||
|
||||
// This is the point of Bytes.
|
||||
func (b *Bytes) UnmarshalJSON(data []byte) error {
|
||||
if len(data) < 2 || data[0] != '"' || data[len(data)-1] != '"' {
|
||||
return fmt.Errorf("Invalid hex string: %s", data)
|
||||
}
|
||||
bytes, err := hex.DecodeString(string(data[1 : len(data)-1]))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
*b = bytes
|
||||
return nil
|
||||
}
|
||||
|
||||
// Allow it to fulfill various interfaces in light-client, etc...
|
||||
func (b Bytes) Bytes() []byte {
|
||||
return b
|
||||
}
|
||||
|
||||
func (b Bytes) String() string {
|
||||
return strings.ToUpper(hex.EncodeToString(b))
|
||||
}
|
Reference in New Issue
Block a user