mirror of
https://github.com/logos-co/nomos-node.git
synced 2026-08-27 09:31:10 +00:00
chore(chainsync): fix wrong log messages (#3309)
This commit is contained in:
@@ -448,8 +448,8 @@ impl NetworkBehaviour for Behaviour {
|
||||
Ok(request_stream) => {
|
||||
self.handle_blocks_request_available(request_stream);
|
||||
}
|
||||
Err(e) => {
|
||||
error!("Error while processing block download request: {}", e);
|
||||
Err(err) => {
|
||||
error!(%err, "failed to send a block download request");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -461,8 +461,8 @@ impl NetworkBehaviour for Behaviour {
|
||||
Ok(request_stream) => {
|
||||
self.handle_tip_request_available(request_stream);
|
||||
}
|
||||
Err(e) => {
|
||||
error!("Error while processing tip request: {}", e);
|
||||
Err(err) => {
|
||||
error!(%err, "failed to send a tip request");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user