Print timeout during request too
authorMatt Corallo <git@bluematt.me>
Wed, 22 May 2019 16:54:29 +0000 (12:54 -0400)
committerMatt Corallo <git@bluematt.me>
Wed, 22 May 2019 17:02:18 +0000 (13:02 -0400)
src/main.rs

index be27835cf6b0df05fbd637b6f713deac21d76572..0e90a32f54360d6e71c1dcca2c11be838ce9122b 100644 (file)
@@ -183,6 +183,9 @@ pub fn scan_node(scan_time: Instant, node: SocketAddr) {
                        let old_state = store.set_node_state(node, state_lock.fail_reason, 0);
                        if old_state != state_lock.fail_reason && state_lock.msg.0 != "" && state_lock.msg.1 {
                                printer.add_line(format!("Updating {} from {} to {}", node, old_state.to_str(), &state_lock.msg.0), state_lock.msg.1);
+                       } else if old_state != state_lock.fail_reason && state_lock.fail_reason == AddressState::TimeoutDuringRequest {
+                               printer.add_line(format!("Updating {} from {} to Timeout During Request (ver: {}, vack: {}, addr: {}, block: {})",
+                                       node, old_state.to_str(), state_lock.recvd_version, state_lock.recvd_verack, state_lock.recvd_addrs, state_lock.recvd_block), true);
                        }
                }
                future::ok(())