Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jaypan authored and Jay Pan committed Oct 14, 2024
1 parent e8b1509 commit d5dee59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion precompiles/peaq-did/did.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface DID {
bytes value,
uint32 validity
);
event RemoveAttribte(
event RemoveAttribute(
address did_account,
bytes name
);
Expand Down
2 changes: 1 addition & 1 deletion precompiles/peaq-did/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub(crate) const SELECTOR_LOG_UPDATE_ATTRIBUTE: [u8; 32] =
keccak256!("UpdateAttribute(address,address,bytes,bytes,uint32)");

pub(crate) const SELECTOR_LOG_REMOVE_ATTRIBUTE: [u8; 32] =
keccak256!("RemoveAttribte(address,bytes)");
keccak256!("RemoveAttribute(address,bytes)");

pub struct PeaqDIDPrecompile<Runtime>(PhantomData<Runtime>);

Expand Down

0 comments on commit d5dee59

Please sign in to comment.