Skip to content

Commit

Permalink
Fix oracle validation arg order
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrit committed Sep 1, 2023
1 parent 0b52ffc commit e87637c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steward/src/cellars.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ pub fn validate_new_position(

pub fn validate_oracle(
cellar_id: &str,
registry_id_in: &str,
oracle_in: &str,
registry_id_in: &str,
) -> Result<(), Error> {
let cellar_id_normalized = normalize_address(cellar_id.to_string());
let oracle_in = normalize_address(oracle_in.to_string());
Expand Down

0 comments on commit e87637c

Please sign in to comment.