diff --git a/core/vm/contract.go b/core/vm/contract.go index bb0902969e..beccdf5fdd 100644 --- a/core/vm/contract.go +++ b/core/vm/contract.go @@ -99,6 +99,7 @@ func (c *Contract) validJumpdest(dest *uint256.Int) bool { // isCode returns true if the provided PC location is an actual opcode, as // opposed to a data-segment following a PUSHN operation. func (c *Contract) isCode(udest uint64) bool { + return true // Do we already have an analysis laying around? if c.analysis != nil { return c.analysis.codeSegment(udest)