We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf055fc commit 8f36a7aCopy full SHA for 8f36a7a
contracts/AcrossEventEmitter.sol
@@ -34,7 +34,7 @@ contract AcrossEventEmitter is ReentrancyGuard {
34
*/
35
function emitData(bytes calldata data) external nonReentrant {
36
require(data.length > 0, "Data cannot be empty");
37
- require(data.length <= 2048, "Data too large"); // Set appropriate limit
+ require(data.length <= 2048, "Data too large");
38
emit MetadataEmitted(data);
39
}
40
0 commit comments