21 lines
543 B
Go
21 lines
543 B
Go
/*
|
|
Copyright IBM Corp. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package protoext
|
|
|
|
import (
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/hyperledger/fabric-protos-go/discovery"
|
|
)
|
|
|
|
// SignedRequestToRequest deserializes this SignedRequest's payload
|
|
// and returns the serialized Request in its object form.
|
|
// Returns an error in case the operation fails.
|
|
func SignedRequestToRequest(sr *discovery.SignedRequest) (*discovery.Request, error) {
|
|
req := &discovery.Request{}
|
|
return req, proto.Unmarshal(sr.Payload, req)
|
|
}
|