()
| 56 | type InvalidSignatureError struct{} |
| 57 | |
| 58 | func (e *InvalidSignatureError) Error() string { |
| 59 | return "A message had an invalid signature" |
| 60 | } |
| 61 | |
| 62 | // WireMsgToComposedMsg translates a multipart ZMQ messages received from a socket into |
| 63 | // a ComposedMsg struct and a slice of return identities. This includes verifying the |
no outgoing calls
no test coverage detected