Skip to content

Commit

Permalink
Update evm.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
azurwastaken committed Oct 10, 2024
1 parent 9033fe7 commit 88c3d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/processing/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub async fn check_feed_update_state() -> Result<(), MonitoringError> {
let evm_config = config.evm_configs();
let feed_registry_address = config
.feed_registry_address()
.expect("failed to retrieve feed registry address");
.ok_or(MonitoringError::Evm("Failed to parse feed registry address".to_string()))?;
let client = &config.network().provider;
let mut feed_list = client
.call(
Expand Down

0 comments on commit 88c3d0f

Please sign in to comment.