|
1 | 1 | package protoutil
|
2 | 2 |
|
3 | 3 | import (
|
| 4 | + "fmt" |
| 5 | + |
4 | 6 | cb "github.com/hyperledger/fabric-protos-go-apiv2/common"
|
5 |
| - "github.com/pkg/errors" |
6 | 7 | "google.golang.org/protobuf/proto"
|
7 | 8 | )
|
8 | 9 |
|
9 | 10 | // UnmarshalEnvelope unmarshals bytes to a Envelope
|
10 | 11 | func UnmarshalEnvelope(encoded []byte) (*cb.Envelope, error) {
|
11 | 12 | envelope := &cb.Envelope{}
|
12 |
| - err := proto.Unmarshal(encoded, envelope) |
13 |
| - return envelope, errors.Wrap(err, "error unmarshaling Envelope") |
| 13 | + if err := proto.Unmarshal(encoded, envelope); err != nil { |
| 14 | + return nil, fmt.Errorf("error unmarshaling Envelope: %w", err) |
| 15 | + } |
| 16 | + return envelope, nil |
14 | 17 | }
|
15 | 18 |
|
16 | 19 | // UnmarshalPayload unmarshals bytes to a Payload
|
17 | 20 | func UnmarshalPayload(encoded []byte) (*cb.Payload, error) {
|
18 | 21 | payload := &cb.Payload{}
|
19 |
| - err := proto.Unmarshal(encoded, payload) |
20 |
| - return payload, errors.Wrap(err, "error unmarshaling Payload") |
| 22 | + if err := proto.Unmarshal(encoded, payload); err != nil { |
| 23 | + return nil, fmt.Errorf("error unmarshaling Payload: %w", err) |
| 24 | + } |
| 25 | + return payload, nil |
21 | 26 | }
|
22 | 27 |
|
23 | 28 | // UnmarshalChannelHeader unmarshals bytes to a ChannelHeader
|
24 | 29 | func UnmarshalChannelHeader(bytes []byte) (*cb.ChannelHeader, error) {
|
25 | 30 | chdr := &cb.ChannelHeader{}
|
26 |
| - err := proto.Unmarshal(bytes, chdr) |
27 |
| - return chdr, errors.Wrap(err, "error unmarshaling ChannelHeader") |
| 31 | + if err := proto.Unmarshal(bytes, chdr); err != nil { |
| 32 | + return nil, fmt.Errorf("error unmarshaling ChannelHeader: %w", err) |
| 33 | + } |
| 34 | + return chdr, nil |
28 | 35 | }
|
29 | 36 |
|
30 | 37 | // UnmarshalConfigUpdateEnvelope attempts to unmarshal bytes to a *cb.ConfigUpdate
|
31 | 38 | func UnmarshalConfigUpdateEnvelope(data []byte) (*cb.ConfigUpdateEnvelope, error) {
|
32 | 39 | configUpdateEnvelope := &cb.ConfigUpdateEnvelope{}
|
33 |
| - err := proto.Unmarshal(data, configUpdateEnvelope) |
34 |
| - if err != nil { |
35 |
| - return nil, err |
| 40 | + if err := proto.Unmarshal(data, configUpdateEnvelope); err != nil { |
| 41 | + return nil, fmt.Errorf("error unmarshaling ConfigUpdateEnvelope: %w", err) |
36 | 42 | }
|
37 | 43 | return configUpdateEnvelope, nil
|
38 | 44 | }
|
0 commit comments