Skip to content

Commit ee6462c

Browse files
committed
prepare version 3.1.0
1 parent b4655fe commit ee6462c

File tree

3 files changed

+39
-117
lines changed

3 files changed

+39
-117
lines changed

package-lock.json

Lines changed: 36 additions & 114 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ethereum-graph-debugger",
33
"author": "Fernando Garcia",
44
"license": "GPL",
5-
"version": "2.2.0",
5+
"version": "3.1.0",
66
"description": "Ethereum graph debugger",
77
"main": "dist/run-server.js",
88
"scripts": {
@@ -83,7 +83,7 @@
8383
"recursive-readdir": "^2.2.2",
8484
"redux-thunk": "^2.3.0",
8585
"reflect-metadata": "^0.1.12",
86-
"solc": "^0.4.24",
86+
"solc": "^0.5.8",
8787
"terser": "3.14.1",
8888
"tsoa": "2.1.8",
8989
"web3": "1.0.0-beta.37",

src/api/bytecode/EVMDisassembler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class EVMDisassembler implements Disassembler {
6060
let runtime = operations
6161
if (hasConstructor) {
6262
// pre- 0.5.* the opcode we are searching is 'STOP', post 0.5.* is INVALID
63-
const firstStopIndex = operations.findIndex(op => op.opcode.name === 'STOP')
63+
const firstStopIndex = operations.findIndex(op => op.opcode.name === 'INVALID')
6464
constructor = operations.slice(0, firstStopIndex + 1)
6565
runtime = this.adjustRuntimeOffset(operations.slice(firstStopIndex + 1, operations.length))
6666
}

0 commit comments

Comments
 (0)