Skip to content

Commit

Permalink
Merge pull request #14 from euler-xyz/cantina-254
Browse files Browse the repository at this point in the history
Cantina 254: indexed Keyword in Events Causes Data Loss for String Variables
  • Loading branch information
dglowinski authored Jul 30, 2024
2 parents c15f0e8 + c2b0f20 commit e0d22ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SequenceRegistry/SequenceRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract SequenceRegistry is ISequenceRegistry {
/// @param designator The opaque designator string
/// @param id The reserved ID, which is unique per designator
/// @param caller The msg.sender who reserved the ID
event SequenceIdReserved(string indexed designator, uint256 indexed id, address indexed caller);
event SequenceIdReserved(string designator, uint256 indexed id, address indexed caller);

/// @inheritdoc ISequenceRegistry
function reserveSeqId(string calldata designator) external returns (uint256) {
Expand Down

0 comments on commit e0d22ca

Please sign in to comment.