Skip to content

Commit c7c0175

Browse files
committed
Remove data upper limit
Signed-off-by: amateima <amatei@umaproject.org>
1 parent f88ed47 commit c7c0175

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

contracts/AcrossEventEmitter.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ contract AcrossEventEmitter is ReentrancyGuard {
3434
*/
3535
function emitData(bytes calldata data) external nonReentrant {
3636
require(data.length > 0, "Data cannot be empty");
37-
require(data.length <= 2048, "Data too large");
3837
emit MetadataEmitted(data);
3938
}
4039
}

0 commit comments

Comments
 (0)