Merge pull request #95 from freewind/bug-fix

Bug fix
pull/194/head
Bernhard Mueller 7 years ago committed by GitHub
commit 7de4ed57c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md
  2. 2
      mythril/support/truffle.py

@ -101,7 +101,7 @@ When analyzing contracts on the blockchain, Mythril will by default query a loca
| None   | Connect to local Ethereum node |
| `-i`     | Connect to INFURA Mainnet via HTTPS |
| `--rpc ganache` | Connect to local Ganache |
| `--rpc infura-[netname]` | Connect to infura-mainnet, rinkey, kovan or ropsten |
| `--rpc infura-[netname]` | Connect to infura-mainnet, rinkeby, kovan or ropsten |
| `--rpc HOST:PORT` | Custom RPC connection Custom |
| `--rpctls <True/False>` | RPC connection over TLS (default: False) |
| `--ipc` | Connect to local Ethereum node via IPC |

@ -55,7 +55,7 @@ def analyze_truffle_project(args):
report = Report()
# augment with source code
disassembly = ethcontract.get_disassembly()
disassembly = ethcontract.disassembly
source = contractdata['source']
deployedSourceMap = contractdata['deployedSourceMap'].split(";")

Loading…
Cancel
Save