lbry.go/schema/stake/pretty.go

33 lines
651 B
Go
Raw Normal View History

package stake
2017-09-12 18:02:30 +02:00
import (
"encoding/json"
"fmt"
2017-09-12 18:02:30 +02:00
"github.com/golang/protobuf/jsonpb"
)
func marshalToString(c *StakeHelper) (string, error) {
2017-11-08 03:39:08 +01:00
m_pb := &jsonpb.Marshaler{}
if c.IsSupport() {
return m_pb.MarshalToString(c.Support)
}
return m_pb.MarshalToString(c.Claim)
2017-09-12 18:02:30 +02:00
}
2017-11-08 03:39:08 +01:00
func (c *StakeHelper) RenderJSON() (string, error) {
r, err := marshalToString(c)
if err != nil {
fmt.Println("err")
return "", err
}
var dat map[string]interface{}
err = json.Unmarshal([]byte(r), &dat)
if err != nil {
return "", err
}
return r, nil
2017-11-08 03:39:08 +01:00
}
//TODO: encode byte arrays with b58 for addresses and b16 for source hashes instead of the default of b64