style: format code (whitespace cleanup)

This commit is contained in:
4NK Dev 2025-10-01 09:45:33 +00:00
parent 3b3650d7de
commit cabc273cb2
7 changed files with 155 additions and 159 deletions

View File

@ -71,4 +71,3 @@ pub fn increment_anchors_confirmed() {
pub fn add_data_volume(bytes: u64) { pub fn add_data_volume(bytes: u64) {
DATA_VOLUME_BYTES.inc_by(bytes); DATA_VOLUME_BYTES.inc_by(bytes);
} }

View File

@ -46,4 +46,3 @@ pub async fn get_payments(
})) }))
} }
} }

View File

@ -90,4 +90,3 @@ pub async fn verify_anchor_endpoint(
} }
})) }))
} }

View File

@ -232,4 +232,3 @@ async fn scan_mempool_for_payments(
fn confirmations_sufficient(current: u32, required: u32) -> bool { fn confirmations_sufficient(current: u32, required: u32) -> bool {
current >= required current >= required
} }