Update node sockets during historical import so we don't have to truncate
This commit is contained in:
parent
f25ec08f5e
commit
0847e15d07
@ -503,6 +503,18 @@ class NodesApi {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update node sockets
|
||||||
|
*/
|
||||||
|
public async $updateNodeSockets(publicKey: string, sockets: {network: string; addr: string}[]): Promise<void> {
|
||||||
|
const formattedSockets = (sockets.map(a => a.addr).join(',')) ?? '';
|
||||||
|
try {
|
||||||
|
await DB.query(`UPDATE nodes SET sockets = ? WHERE public_key = ?`, [formattedSockets, publicKey]);
|
||||||
|
} catch (e) {
|
||||||
|
logger.err(`Cannot update node sockets for ${publicKey}. Reason: ${e instanceof Error ? e.message : e}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set all nodes not in `nodesPubkeys` as inactive (status = 0)
|
* Set all nodes not in `nodesPubkeys` as inactive (status = 0)
|
||||||
*/
|
*/
|
||||||
|
@ -51,6 +51,8 @@ class LightningStatsImporter {
|
|||||||
features: node.features,
|
features: node.features,
|
||||||
});
|
});
|
||||||
nodesInDb[node.pub_key] = node;
|
nodesInDb[node.pub_key] = node;
|
||||||
|
} else {
|
||||||
|
await nodesApi.$updateNodeSockets(node.pub_key, node.addresses);
|
||||||
}
|
}
|
||||||
|
|
||||||
let hasOnion = false;
|
let hasOnion = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user