2019-07-17 14:30:55 +00:00
|
|
|
package actors
|
|
|
|
|
|
|
|
import (
|
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
)
|
|
|
|
|
2019-07-17 16:00:59 +00:00
|
|
|
var (
|
|
|
|
EmptyStructCBOR = []byte{0xa0}
|
|
|
|
)
|
|
|
|
|
2019-07-17 14:30:55 +00:00
|
|
|
func SerializeParams(i interface{}) ([]byte, error) {
|
|
|
|
return cbor.DumpObject(i)
|
|
|
|
}
|