Skip to content

Commit

Permalink
Fix assert error typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fmkra committed Jun 3, 2024
1 parent 9676e72 commit 568df0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/commitments_inbox.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ mod CommitmentsInbox {
aggregator_id: usize,
mmr_id: MmrId
) {
assert(from_address == self.l1_message_sender.read().into(), 'ONLY_L!_MESSAGE_SENDER');
assert(from_address == self.l1_message_sender.read().into(), 'ONLY_L1_MESSAGE_SENDER');

let contract_address = self.headers_store.read();
IHeadersStoreDispatcher { contract_address }
Expand Down

0 comments on commit 568df0c

Please sign in to comment.