Rename command line tool to 'myth'

pull/2/head
Bernhard Mueller 7 years ago
parent 0dd4d52c63
commit 9a60b7a5a1
  1. 0
      myth
  2. 2
      mythril/ether/ethcontract.py
  3. 4
      setup.py

@ -22,7 +22,7 @@ class ETHContract(persistent.Persistent):
if instruction['argument']:
addr = instruction['argument'].decode("utf-8")
if (re.match(r'^[a-zA-Z0-9]{40}$', addr)):
if (re.match(r'^[a-zA-Z0-9]{40}$', addr) and addr != "ffffffffffffffffffffffffffffffffffffffff"):
if addr not in xrefs:
xrefs.append(addr)

@ -162,7 +162,7 @@ doesn't seem to be maintained anymore, and I needed to make some changes to it).
setup(
name='mythril',
version='0.2.8',
version='0.2.9',
description='A reversing and bug hunting framework for the Ethereum blockchain',
long_description=long_description,
@ -204,5 +204,5 @@ setup(
extras_require={
},
scripts=['mythril/mythril']
scripts=['myth']
)

Loading…
Cancel
Save