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 f88ed47 commit c7c0175Copy full SHA for c7c0175
contracts/AcrossEventEmitter.sol
@@ -34,7 +34,6 @@ 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");
38
emit MetadataEmitted(data);
39
}
40
0 commit comments