rpcserver+docs: add default case to addr type switch

This commit adds a default case to the address type switch statement in
the NewAddress rpc server function. This catches any invalid address
types and returns an error.
This commit is contained in:
Elle Mouton
2022-08-22 16:11:22 +02:00
parent a58553d1bd
commit ca6a2e12e0
2 changed files with 6 additions and 0 deletions

View File

@@ -1542,6 +1542,9 @@ func (r *rpcServer) NewAddress(ctx context.Context,
if err != nil {
return nil, err
}
default:
return nil, fmt.Errorf("unknown address type: %v", in.Type)
}
rpcsLog.Debugf("[newaddress] account=%v type=%v addr=%v", account,