diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-03 05:19:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-03 05:19:58 +0800 |
commit | 16f417f5af16de8f1c2c140f8b249bd989200bd3 (patch) | |
tree | c0916e6cac3208a6a2ed889406a86ea3f71e433a /vm/analysis.go | |
parent | 5c82fdc2434c302a2b65a4c7f25fe91b22cd43df (diff) | |
download | go-tangerine-16f417f5af16de8f1c2c140f8b249bd989200bd3.tar.gz go-tangerine-16f417f5af16de8f1c2c140f8b249bd989200bd3.tar.zst go-tangerine-16f417f5af16de8f1c2c140f8b249bd989200bd3.zip |
Fixed bug where logging could crash client during tx adding
Diffstat (limited to 'vm/analysis.go')
-rw-r--r-- | vm/analysis.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vm/analysis.go b/vm/analysis.go index 501fbfc4a..411df5686 100644 --- a/vm/analysis.go +++ b/vm/analysis.go @@ -12,7 +12,6 @@ func analyseJumpDests(code []byte) (dests *set.Set) { a := uint64(op) - uint64(PUSH1) + 1 pc += a - //lp = true case JUMPDEST: dests.Add(pc) } |