From 95c52ab62f7be855d084b70626b67e8ca516714f Mon Sep 17 00:00:00 2001 From: Dan Connolly Date: Mon, 21 Jun 2021 14:59:43 -0500 Subject: [PATCH] fix(xsnap): 1e7 was too small for crank meter limit ... as shown in solo tests --- packages/xsnap/src/xsnap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/xsnap/src/xsnap.js b/packages/xsnap/src/xsnap.js index 64d5221c76b..9fc55f63a5a 100644 --- a/packages/xsnap/src/xsnap.js +++ b/packages/xsnap/src/xsnap.js @@ -17,7 +17,7 @@ import * as netstring from './netstring.js'; import * as node from './node-stream.js'; // This will need adjustment, but seems to be fine for a start. -export const DEFAULT_CRANK_METERING_LIMIT = 1e7; +export const DEFAULT_CRANK_METERING_LIMIT = 1e8; const OK = '.'.charCodeAt(0); const ERROR = '!'.charCodeAt(0);