Fix default database dir

pull/2/head
Bernhard Mueller 7 years ago
parent ec7d7cb53b
commit b9bf04be9a
  1. 2
      mythril/mythril
  2. 2
      setup.py

@ -12,7 +12,7 @@ import sys
import argparse
import os
DEFAULT_DB_DIR = "~/.mythril"
DEFAULT_DB_DIR = os.path.join(os.path.expanduser('~'), ".mythril")
def searchCallback(code_hash, code, addresses, balances):
print("Matched contract with code hash " + code_hash )

@ -9,7 +9,7 @@ long_description = '''
setup(
name='mythril',
version='0.2.5',
version='0.2.7',
description='A bug hunting tool framework for the Ethereum blockchain',
long_description=long_description,

Loading…
Cancel
Save