node/pkg/publicrpc: handle nil req.MessageID
Change-Id: Id43ef898a687bb5ad4b2a80ed42b08aca538ea26
This commit is contained in:
parent
df3418bafb
commit
305fcdc393
|
@ -66,6 +66,9 @@ func (s *PublicrpcServer) GetSignedVAA(ctx context.Context, req *publicrpcv1.Get
|
||||||
if len(address) != 32 {
|
if len(address) != 32 {
|
||||||
return nil, status.Error(codes.InvalidArgument, "address must be 32 bytes")
|
return nil, status.Error(codes.InvalidArgument, "address must be 32 bytes")
|
||||||
}
|
}
|
||||||
|
if req.MessageId == nil {
|
||||||
|
return nil, status.Error(codes.InvalidArgument, "no message ID specified")
|
||||||
|
}
|
||||||
|
|
||||||
addr := vaa.Address{}
|
addr := vaa.Address{}
|
||||||
copy(addr[:], address)
|
copy(addr[:], address)
|
||||||
|
|
Loading…
Reference in New Issue