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 a4ba7e9 commit 4f84597Copy full SHA for 4f84597
.changeset/common-birds-wear.md
@@ -0,0 +1,5 @@
1
+---
2
+"@cartesi/rollups": minor
3
4
+
5
+Increase input size limit from 64 KB to 2 MB
src/common/CanonicalMachine.sol
@@ -8,8 +8,8 @@ pragma solidity ^0.8.8;
8
/// @notice Defines several constants related to the reference implementation
9
/// of the RISC-V machine that runs Linux, also known as the "Cartesi Machine".
10
library CanonicalMachine {
11
- /// @notice Maximum input size (64 kilobytes).
12
- uint256 constant INPUT_MAX_SIZE = 1 << 16;
+ /// @notice Maximum input size (2 megabytes).
+ uint256 constant INPUT_MAX_SIZE = 1 << 21;
13
14
/// @notice Log2 of maximum number of outputs.
15
uint256 constant LOG2_MAX_OUTPUTS = 63;
0 commit comments