diff --git a/utils/lightningServices/types.ts b/utils/lightningServices/types.ts index ca0d034f..fcd84661 100644 --- a/utils/lightningServices/types.ts +++ b/utils/lightningServices/types.ts @@ -134,15 +134,15 @@ export interface Services { } export interface ListChannelsReq { - active_only: boolean - inactive_only: boolean - public_only: boolean - private_only: boolean + active_only?: boolean + inactive_only?: boolean + public_only?: boolean + private_only?: boolean /** * Filters the response for channels with a target peer's pubkey. If peer is * empty, all channels will be returned. */ - peer: Common.Bytes + peer?: Common.Bytes } /**