Fixed bug where logging could crash client during tx adding

This commit is contained in:
obscuren
2015-01-02 22:19:58 +01:00
parent 5c82fdc243
commit 16f417f5af
5 changed files with 24 additions and 24 deletions

View File

@ -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)
}