diff --git a/catalyst-gateway/bin/Cargo.toml b/catalyst-gateway/bin/Cargo.toml index 4f664ec101d..75c578f6d92 100644 --- a/catalyst-gateway/bin/Cargo.toml +++ b/catalyst-gateway/bin/Cargo.toml @@ -15,7 +15,7 @@ repository.workspace = true workspace = true [dependencies] -cardano-chain-follower = { version = "0.0.5", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.9" } +cardano-chain-follower = { version = "0.0.6", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.10" } c509-certificate = { version = "0.0.3", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.3" } rbac-registration = { version = "0.0.2", git = "https://github.com/input-output-hk/catalyst-libs.git", tag = "v0.0.8" } diff --git a/catalyst-gateway/bin/src/db/index/block/roll_forward.rs b/catalyst-gateway/bin/src/db/index/block/roll_forward.rs index 4cd98b16aec..46994b5d4c7 100644 --- a/catalyst-gateway/bin/src/db/index/block/roll_forward.rs +++ b/catalyst-gateway/bin/src/db/index/block/roll_forward.rs @@ -207,7 +207,6 @@ async fn purge_stake_registration( } /// Purge data from `txi_by_hash`. -#[allow(clippy::unused_async)] async fn purge_txi_by_hash( session: &Arc, purge_to_slot: &num_bigint::BigInt, ) -> anyhow::Result>> { @@ -273,7 +272,6 @@ async fn purge_txo_assets( } /// Purge data from `unstaked_txo_ada`. -#[allow(clippy::unused_async)] async fn purge_unstaked_txo_ada( session: &Arc, purge_to_slot: &num_bigint::BigInt, ) -> anyhow::Result<()> {