Skip to content

Commit

Permalink
Bump to LND v0.7.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
cavanmflynn committed Jul 12, 2019
1 parent 38fec32 commit a3b7a85
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 5 additions & 2 deletions lnd/v0.7.0-beta-rc1/rpc.proto → lnd/v0.7.0-beta/rpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ service Lightning {
/** lncli: `walletbalance`
WalletBalance returns total unspent outputs(confirmed and unconfirmed), all
confirmed unspent outputs and all unconfirmed unspent outputs under control
of the wallet.
of the wallet.
*/
rpc WalletBalance (WalletBalanceRequest) returns (WalletBalanceResponse) {
option (google.api.http) = {
Expand Down Expand Up @@ -398,7 +398,7 @@ service Lightning {
rpc SubscribeChannelEvents (ChannelEventSubscription) returns (stream ChannelEventUpdate);

/** lncli: `closedchannels`
ClosedChannels returns a description of all the closed channels that
ClosedChannels returns a description of all the closed channels that
this node was a participant in.
*/
rpc ClosedChannels (ClosedChannelsRequest) returns (ClosedChannelsResponse) {
Expand Down Expand Up @@ -1726,6 +1726,9 @@ message Route {
message NodeInfoRequest {
/// The 33-byte hex-encoded compressed public of the target node
string pub_key = 1;

/// If true, will include all known channels associated with the node.
bool include_channels = 2;
}

message NodeInfo {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@radar/lnrpc",
"version": "0.7.0-beta-rc1.0",
"version": "0.7.0-beta",
"description": "typed gRPC client for lightningnetwork/lnd",
"main": "index.js",
"types": "types/index.d.ts",
"config": {
"lnd-release-tag": "v0.7.0-beta-rc1",
"lnd-release-tag": "v0.7.0-beta",
"lnd-url": "https://raw.githubusercontent.com/lightningnetwork/lnd",
"protoc-version": "3.5.1"
},
Expand Down
4 changes: 4 additions & 0 deletions types/generated/rpc_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2435,6 +2435,9 @@ export class NodeInfoRequest extends jspb.Message {
getPubKey(): string;
setPubKey(value: string): void;

getIncludeChannels(): boolean;
setIncludeChannels(value: boolean): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): NodeInfoRequest.AsObject;
static toObject(includeInstance: boolean, msg: NodeInfoRequest): NodeInfoRequest.AsObject;
Expand All @@ -2448,6 +2451,7 @@ export class NodeInfoRequest extends jspb.Message {
export namespace NodeInfoRequest {
export type AsObject = {
pubKey: string,
includeChannels: boolean,
}
}

Expand Down
1 change: 1 addition & 0 deletions types/lnrpc.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,7 @@ export interface ChannelEdge {

export interface NodeInfoRequest {
pubKey: string;
includeChannels?: boolean;
}

export interface NodeInfo {
Expand Down

0 comments on commit a3b7a85

Please sign in to comment.