Skip to content

Commit

Permalink
Fix missing getWalletInfo result types
Browse files Browse the repository at this point in the history
  • Loading branch information
bkiac committed Aug 23, 2024
1 parent ef1fbdf commit 61aec84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lnd_methods/info/get_wallet_info.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export type GetWalletInfoResult = {
}[];
/** Is Synced To Chain */
is_synced_to_chain: boolean;
/** Is Synced To Network Graph */
is_synced_to_graph?: boolean;
/** Latest Known Block At Date */
latest_block_at: string;
/** Peer Count */
Expand All @@ -34,6 +36,8 @@ export type GetWalletInfoResult = {
pending_channels_count: number;
/** Public Key */
public_key: string;
/** The URIs of the Node */
uris?: string[];
/** Version String */
version: string;
};
Expand Down

0 comments on commit 61aec84

Please sign in to comment.