Added an "update all" function

Probably not really worth a whole commit
This commit is contained in:
2024-07-14 17:25:11 +01:00
parent 640bace871
commit 12f77ce9af

View File

@@ -157,6 +157,13 @@ pub fn update_xmr_blockheight() {
}
}
pub fn update_all_blockheights() {
update_bsv_blockheight();
update_btc_blockheight();
update_eth_blockheight();
update_xmr_blockheight();
}
#[cfg(test)]
mod tests {
use super::*;