Skip to content

Commit

Permalink
Restore VerifyMessages endpoint that is noop
Browse files Browse the repository at this point in the history
  • Loading branch information
themicp committed Jan 12, 2024
1 parent 4f601f3 commit c653ba2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions contracts/light-client/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ pub fn execute(
.map_err(|e| ContractError::Std(StdError::GenericErr { msg: e.to_string() }))?;
Ok(Response::new())
}
VerifyMessages { messages: _ } => Ok(Response::new()),
}
}

Expand Down
1 change: 1 addition & 0 deletions contracts/light-client/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ pub enum ExecuteMsg {
LightClientUpdate(Update),
BatchVerificationData(BatchVerificationData),
UpdateConfig(Config),
VerifyMessages { messages: Vec<Message> },
}

#[cw_ownable_query]
Expand Down

0 comments on commit c653ba2

Please sign in to comment.