# Chronicle Solidifier Temp ```shell nodes_to_tangle_nodes = {"M0": NodeIndex(0), "T5": NodeIndex(4), "T4": NodeIndex(5), "T0": NodeIndex(1), "T1": NodeIndex(2), "M1": NodeIndex(3)} Tangle = Graph { Ty: "Directed", node_count: 6, edge_count: 6, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: ""} } new_coming_transaction_nodes = {"M0": TransactionNode { transaction: ChronicleTransaction { hash: "M0" }, trunk: ChronicleTransaction { hash: "T0" }, branch: ChronicleTransaction { hash: "T1" } }, "M1": TransactionNode { transaction: ChronicleTransaction { hash: "M1" }, trunk: ChronicleTransaction { hash: "T1" }, branch: ChronicleTransaction { hash: "T5" } }, "T5": TransactionNode { transaction: ChronicleTransaction { hash: "T5" }, trunk: ChronicleTransaction { hash: "T1" }, branch: ChronicleTransaction { hash: "T4" } }} Visit from M0 Solidify "M0" Solidify "T0" Dead end at: Node { weight: "T0", next: [EdgeIndex(4294967295), EdgeIndex(0)] } add_new_transaction_node for node T0 Miss in new coming txs! Solidify T1 Miss in new coming txs! Solidify T3 Miss in new coming txs! Solidify T4 Miss in new coming txs! Solidify T2 Miss in new coming txs! Solidify T8 Current Tangle: Graph { Ty: "Directed", node_count: 6, edge_count: 6, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: ""} } Current Tangle stack: FixedBitSet { data: [3], length: 6 } Current Tangle discovered: [NodeIndex(2)] Solidify "T1" Dead end at: Node { weight: "T1", next: [EdgeIndex(4294967295), EdgeIndex(4)] } add_new_transaction_node for node T1 Current Tangle: Graph { Ty: "Directed", node_count: 6, edge_count: 6, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: ""} } Current Tangle stack: FixedBitSet { data: [7], length: 6 } Current Tangle discovered: [] Visit from M1 Solidify "M1" Solidify "T5" Solidify "T4" Dead end at: Node { weight: "T4", next: [EdgeIndex(4294967295), EdgeIndex(5)] } add_new_transaction_node for node T4 Current Tangle: Graph { Ty: "Directed", node_count: 6, edge_count: 6, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: ""} } Current Tangle stack: FixedBitSet { data: [63], length: 6 } Current Tangle discovered: [] node_to_milestone {"T2": 100, "T1": 100, "T3": 100, "T5": 100, "T10": 99, "T9": 99, "T4": 100, "T12": 99, "T8": 100, "T7": 99, "T11": 99, "T13": 99, "M0": 100, "M1": 100, "T0": 100, "T6": 99} Tangle Graph { Ty: "Directed", node_count: 9, edge_count: 12, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), (6, 7), (6, 8), (2, 7), (2, 5), (1, 2), (1, 6), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4", 6: "T2", 7: "T3", 8: "T8"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: "", 6: "", 7: "", 8: "", 9: "", 10: "", 11: ""} } Tangle: Graph { Ty: "Directed", node_count: 9, edge_count: 12, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), (6, 7), (6, 8), (2, 7), (2, 5), (1, 2), (1, 6), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4", 6: "T2", 7: "T3", 8: "T8"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: "", 6: "", 7: "", 8: "", 9: "", 10: "", 11: ""} } Tangle: Graph { Ty: "Directed", node_count: 9, edge_count: 12, edges: (0, 1), (0, 2), (3, 2), (3, 4), (4, 2), (4, 5), (6, 7), (6, 8), (2, 7), (2, 5), (1, 2), (1, 6), node weights: {0: "M0", 1: "T0", 2: "T1", 3: "M1", 4: "T5", 5: "T4", 6: "T2", 7: "T3", 8: "T8"}, edge weights: {0: "", 1: "", 2: "", 3: "", 4: "", 5: "", 6: "", 7: "", 8: "", 9: "", 10: "", 11: ""} } ```