more sequencing

This commit is contained in:
John Smith
2023-06-25 01:23:24 -04:00
parent 234f048241
commit 3e23f808d0
11 changed files with 137 additions and 114 deletions

View File

@@ -728,6 +728,10 @@ impl RPCProcessor {
if sequencing > node_ref.sequencing() {
node_ref.set_sequencing(sequencing)
}
let mut destination_node_ref = destination_node_ref.clone();
if sequencing > destination_node_ref.sequencing() {
destination_node_ref.set_sequencing(sequencing)
}
// Reply private route should be None here, even for questions
assert!(reply_private_route.is_none());