81f03a9f68
License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
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)
|
|
}
|