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
No known key found for this signature in database
GPG Key ID: D7D916376026F177
2 changed files with 6 additions and 0 deletions

@ -164,6 +164,9 @@ default](https://github.com/lightningnetwork/lnd/pull/6810) in most cases.
* [Remove `ScidAliasOptional` dependency on
`ExplicitChannelTypeOptional`](https://github.com/lightningnetwork/lnd/pull/6809)
* [Add a default case](https://github.com/lightningnetwork/lnd/pull/6847) to the
Address Type switch statement in the `NewAddress` rpc server method.
## Code Health
### Code cleanup, refactor, typo fixes

@ -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,