Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyRo1 committed May 13, 2024
1 parent ff168b3 commit ad56529
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/contracts/isms/multisig/messageid_multisig_ism.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub mod messageid_multisig_ism {
self: @ContractState,
_metadata: Bytes,
_message: Message,
_validator_configuration: ContractAddress
_validator_configuration: ContractAddress,
) -> bool {
assert(_metadata.clone().data().len()>0, Errors::EMPTY_METADATA);
let digest = digest(_metadata.clone(), _message.clone());
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#[starknet::contract]
pub mod validator_annonce {
pub mod validator_announce {
use alexandria_bytes::{Bytes, BytesTrait};
use core::keccak::keccak_u256s_be_inputs;
use hyperlane_starknet::contracts::libs::checkpoint_lib::checkpoint_lib::{
Expand Down
2 changes: 1 addition & 1 deletion src/lib.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mod contracts {
pub mod merkleroot_multisig_ism;
pub mod messageid_multisig_ism;
pub mod multisig_ism;
pub mod validator_annonce;
pub mod validator_announce;
}
pub mod routing {
pub mod domain_routing_ism;
Expand Down

0 comments on commit ad56529

Please sign in to comment.