28 lines
529 B
Go
28 lines
529 B
Go
package types
|
|
|
|
import (
|
|
"encoding/base64"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/paych"
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
)
|
|
|
|
type SignedVoucher = paych.SignedVoucher
|
|
|
|
func DecodeSignedVoucher(s string) (*SignedVoucher, error) {
|
|
data, err := base64.RawURLEncoding.DecodeString(s)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var sv SignedVoucher
|
|
if err := cbor.DecodeInto(data, &sv); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &sv, nil
|
|
}
|
|
|
|
type Merge = paych.Merge
|
|
type ModVerifyParams = paych.ModVerifyParams
|