fix lone txqueue log target (#5331)

This commit is contained in:
joe petrowski
2020-03-20 14:15:02 +01:00
committed by GitHub
parent 400a62680f
commit 589c279adf
+1 -1
View File
@@ -382,7 +382,7 @@ impl<PoolApi, Block> MaintainedTransactionPool for BasicPool<PoolApi, Block>
let block_number = match api.block_id_to_number(&id) {
Ok(Some(number)) => number,
_ => {
log::trace!(target: "txqueue", "Skipping chain event - no number for that block {:?}", id);
log::trace!(target: "txpool", "Skipping chain event - no number for that block {:?}", id);
return Box::pin(ready(()));
}
};