Skip to content

Commit

Permalink
Clippy workflow debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjemmmic committed Aug 22, 2024
1 parent 420b739 commit 4118619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions avs/tangle-avs/contracts/remappings.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@openzeppelin-upgrades/=lib/eigenlayer-middleware/lib/openzeppelin-contracts-upgradeable/
@openzeppelin/=lib/eigenlayer-middleware/lib/openzeppelin-contracts/
@openzeppelin-interfaces/=lib/eigenlayer-middleware/lib/openzeppelin-contracts/interfaces/
ds-test/=lib/ds-test/src/
eigenlayer-contracts/=lib/eigenlayer-middleware/lib/eigenlayer-contracts
eigenlayer-middleware/=lib/eigenlayer-middleware/
Expand Down
2 changes: 1 addition & 1 deletion utils/src/avs_registry/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ impl<T: Config> AvsRegistryChainReaderTrait for AvsRegistryContractManager<T> {
let start = start_block;
let mut end = stop_block;
if start_block == 0 && stop_block == 0 {
end = self.eth_client_http.get_block_number().await? as u64;
end = self.eth_client_http.get_block_number().await?;
}

for i in (start..=end).step_by(block_range as usize) {
Expand Down

0 comments on commit 4118619

Please sign in to comment.