10 lines
148 B
Go
10 lines
148 B
Go
|
package actors
|
||
|
|
||
|
import (
|
||
|
cbor "github.com/ipfs/go-ipld-cbor"
|
||
|
)
|
||
|
|
||
|
func SerializeParams(i interface{}) ([]byte, error) {
|
||
|
return cbor.DumpObject(i)
|
||
|
}
|