Skip to content

Commit

Permalink
Update EIP-5169: Fix uncompilable memory in event (#7295)
Browse files Browse the repository at this point in the history
Update eip-5169.md

events should not contain `memory` keyword
  • Loading branch information
ColinPlatt authored Jul 24, 2023
1 parent d9023a2 commit 231684b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EIPS/eip-5169.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Based on this, we define the smart contract interface below:
interface IERC5169 {
/// @dev This event emits when the scriptURI is updated,
/// so wallets implementing this interface can update a cached script
event ScriptUpdate(string[] memory newScriptURI);
event ScriptUpdate(string[] newScriptURI);
/// @notice Get the scriptURI for the contract
/// @return The scriptURI
Expand Down

0 comments on commit 231684b

Please sign in to comment.