Skip to content

Commit 506c05f

Browse files
committed
modify the max code size of contract deploy
1 parent b5aa59e commit 506c05f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/peersafe/core/Tuning.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2222

2323
namespace ripple {
2424
//
25-
int64_t const MAX_CODE_SIZE = 0x6000;
25+
int64_t const MAX_CODE_SIZE = std::numeric_limits<std::uint64_t>::max(); //0x6000;
2626
//
2727
int64_t const CREATE_DATA_GAS = 200;
2828
//

0 commit comments

Comments
 (0)