display channel close forensics results

This commit is contained in:
Mononaut
2022-11-10 18:32:18 -06:00
committed by softsimon
parent cf89ded14d
commit 0c96a11150
8 changed files with 134 additions and 2 deletions

View File

@@ -217,8 +217,8 @@ export interface IChannel {
updated_at: string;
created: string;
status: number;
node_left: Node,
node_right: Node,
node_left: INode,
node_right: INode,
}
@@ -236,4 +236,6 @@ export interface INode {
updated_at: string;
longitude: number;
latitude: number;
funding_balance?: number;
closing_balance?: number;
}