feat: sortKey interactions cache

This commit is contained in:
ppe
2022-06-01 16:51:43 +02:00
committed by just_ppe
parent 165bb38f06
commit 74e8696838
79 changed files with 2421 additions and 3294 deletions

View File

@@ -34,7 +34,7 @@ async function main() {
const sorted = await lexSorting.sort([...interactions]);
logger.info("\n\nLexicographical");
sorted.forEach(v => {
logger.info(`${v.node.block.height}:${v.node.id}: [${v.sortKey}]`);
logger.info(`${v.node.block.height}:${v.node.id}: [${v.node.sortKey}]`);
});
}