Compare commits

..

No commits in common. "72f795a5c5dbbecb08fdd3cbe8125e40808d8828" and "ac74d7bc71ed44f6e357dc9dc44dcdc4def945f8" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -1464,7 +1464,7 @@ namespace cryptonote
q = get_quorum(service_nodes::quorum_type::blink, q_height);
if (!q)
{
log::trace(logcat, "Don't have a quorum for height {} (yet?), ignoring this blink", q_height);
log::info(logcat, "Don't have a quorum for height {} (yet?), ignoring this blink", q_height);
no_quorum = true;
break;
}

View file

@ -429,7 +429,7 @@ namespace cryptonote
}
if (context.m_need_blink_sync)
log::debug(logcat, "{}Need to synchronized blink signatures", context);
log::info(logcat, "{}Need to synchronized blink signatures", context);
}
uint64_t target = m_core.get_target_blockchain_height();
@ -1084,7 +1084,7 @@ namespace cryptonote
// so don't drop the connection).
if (!syncing && (!all_okay || bad_blinks))
{
log::debug(logcat, "{} verification(s) failed, dropping connection", (!all_okay && bad_blinks ? "Tx and Blink" : !all_okay ? "Tx" : "Blink"));
log::info(logcat, "{} verification(s) failed, dropping connection", (!all_okay && bad_blinks ? "Tx and Blink" : !all_okay ? "Tx" : "Blink"));
drop_connection(context, false, false);
}