9597ed8498
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
14 lines
189 B
Go
14 lines
189 B
Go
package actors
|
|
|
|
import (
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
)
|
|
|
|
var (
|
|
EmptyStructCBOR = []byte{0xa0}
|
|
)
|
|
|
|
func SerializeParams(i interface{}) ([]byte, error) {
|
|
return cbor.DumpObject(i)
|
|
}
|