Do not fetch node stats for channel tree graph
This commit is contained in:
parent
7995058d86
commit
35512bef8d
@ -288,8 +288,10 @@ class ChannelsApi {
|
|||||||
|
|
||||||
const channels: any[] = []
|
const channels: any[] = []
|
||||||
for (const row of allChannels) {
|
for (const row of allChannels) {
|
||||||
|
let channel;
|
||||||
|
if (index >= 0) {
|
||||||
const activeChannelsStats: any = await nodesApi.$getActiveChannelsStats(row.public_key);
|
const activeChannelsStats: any = await nodesApi.$getActiveChannelsStats(row.public_key);
|
||||||
channels.push({
|
channel = {
|
||||||
status: row.status,
|
status: row.status,
|
||||||
closing_reason: row.closing_reason,
|
closing_reason: row.closing_reason,
|
||||||
capacity: row.capacity ?? 0,
|
capacity: row.capacity ?? 0,
|
||||||
@ -302,7 +304,20 @@ class ChannelsApi {
|
|||||||
channels: activeChannelsStats.active_channel_count ?? 0,
|
channels: activeChannelsStats.active_channel_count ?? 0,
|
||||||
capacity: activeChannelsStats.capacity ?? 0,
|
capacity: activeChannelsStats.capacity ?? 0,
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
|
} else if (index === -1) {
|
||||||
|
channel = {
|
||||||
|
capacity: row.capacity ?? 0,
|
||||||
|
short_id: row.short_id,
|
||||||
|
id: row.id,
|
||||||
|
node: {
|
||||||
|
alias: row.alias.length > 0 ? row.alias : row.public_key.slice(0, 20),
|
||||||
|
public_key: row.public_key,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
channels.push(channel);
|
||||||
}
|
}
|
||||||
|
|
||||||
return channels;
|
return channels;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user