Skip to content

Commit

Permalink
Update inbox.rs (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
9i5BCrUcNX5NmT authored Jan 18, 2024
1 parent 665671d commit 8367515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/freenet-email-app/web/src/inbox.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ impl DecryptedMessage {
}
.try_into()
.map_err(|e| format!("{e}"))?;
let inbox_key = !::from_params(INBOX_CODE_HASH, params).map_err(|e| format!("{e}"))?;
let inbox_key = ContractKey::from_params(INBOX_CODE_HASH, params).map_err(|e| format!("{e}"))?;
AftRecords::pending_assignment(delegate_key, inbox_key.clone());

PENDING_INBOXES_UPDATE.with(|map| {
Expand Down

0 comments on commit 8367515

Please sign in to comment.