Skip to content

Commit 99998e4

Browse files
committed
removed parentheses
1 parent cc10bd0 commit 99998e4

File tree

1 file changed

+1
-1
lines changed
  • target_chains/stylus/contracts/pyth-receiver/src

1 file changed

+1
-1
lines changed

target_chains/stylus/contracts/pyth-receiver/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl PythReceiver {
203203
}
204204

205205
for i in 0..price_ids.len() {
206-
if (self.latest_price_info_publish_time(price_ids[i]) < publish_times[i]) {
206+
if self.latest_price_info_publish_time(price_ids[i]) < publish_times[i] {
207207
self.update_price_feeds(update_data.clone())?;
208208
return Ok(());
209209
}

0 commit comments

Comments
 (0)