From f98afce661b297dfd2ec8e2a67bc12c4984c6914 Mon Sep 17 00:00:00 2001 From: Mantas-M <120508669+Mantas-M@users.noreply.github.com> Date: Mon, 9 Dec 2024 15:32:51 +0100 Subject: [PATCH] Update rust/main/hyperlane-base/src/contract_sync/cursors/rate_limited.rs Co-authored-by: Danil Nemirovsky --- .../hyperlane-base/src/contract_sync/cursors/rate_limited.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/main/hyperlane-base/src/contract_sync/cursors/rate_limited.rs b/rust/main/hyperlane-base/src/contract_sync/cursors/rate_limited.rs index a654c13bad..88c5784824 100644 --- a/rust/main/hyperlane-base/src/contract_sync/cursors/rate_limited.rs +++ b/rust/main/hyperlane-base/src/contract_sync/cursors/rate_limited.rs @@ -182,7 +182,7 @@ impl RateLimitedContractSyncCursor #[async_trait] impl ContractSyncCursor for RateLimitedContractSyncCursor where - T: Send + Sync + Debug + 'static + Indexable, + T: Indexable + Send + Sync + Debug + 'static, { async fn next_action(&mut self) -> Result<(CursorAction, Duration)> { let eta = self.sync_eta();