1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 09:54:09 +01:00

Substract signed integers

This commit is contained in:
Roman Zeyde 2018-07-12 19:38:39 +03:00
parent 1e258f4b3d
commit 4d322d4819
No known key found for this signature in database
GPG Key ID: 87CAE5FA46917CBB

View File

@ -196,7 +196,7 @@ impl Tracker {
trace!(
"{} transactions in mempool ({:+})",
new_txids.len(),
new_txids.len() - old_txids.len()
new_txids.len() as i64 - old_txids.len() as i64
);
timer.observe_duration();