mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-21 17:55:42 +00:00
Fix wrong order of values in log line (#7728)
This commit is contained in:
@@ -1541,7 +1541,7 @@ fn peer_block_request<B: BlockT>(
|
|||||||
trace!(
|
trace!(
|
||||||
target: "sync",
|
target: "sync",
|
||||||
"Requesting pre-finalized chain from {:?}, common={}, finalized={}, peer best={}, our best={}",
|
"Requesting pre-finalized chain from {:?}, common={}, finalized={}, peer best={}, our best={}",
|
||||||
id, finalized, peer.common_number, peer.best_number, best_num,
|
id, peer.common_number, finalized, peer.best_number, best_num,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if let Some(range) = blocks.needed_blocks(
|
if let Some(range) = blocks.needed_blocks(
|
||||||
|
|||||||
Reference in New Issue
Block a user