Skip to content

Commit 1940257

Browse files
authored
Update VM.java
1 parent 1490db2 commit 1940257

File tree

1 file changed

+1
-2
lines changed
  • src/main/java/org/tron/common/runtime/vm

1 file changed

+1
-2
lines changed

src/main/java/org/tron/common/runtime/vm/VM.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1333,9 +1333,8 @@ public void play(Program program) {
13331333
}
13341334

13351335
} catch (JVMStackOverFlowException e) {
1336-
throw new JVMStackOverFlowException();
1336+
throw e;
13371337
} catch (OutOfResourceException e) {
1338-
program.setRuntimeFailure(e);
13391338
throw e;
13401339
} catch (RuntimeException e) {
13411340
if (StringUtils.isEmpty(e.getMessage())) {

0 commit comments

Comments
 (0)