Skip to content

Commit

Permalink
Testing wasm-tob forked wasm module
Browse files Browse the repository at this point in the history
  • Loading branch information
ekilmer committed Dec 30, 2022
1 parent 6014ee5 commit d8a39f7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions manticore/wasm/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
from ..utils.event import Eventful
from ..utils import config

from wasm import decode_module, Section
from wasm.wasmtypes import (
from wasm_tob import decode_module, Section
from wasm_tob.wasmtypes import (
SEC_TYPE,
SEC_IMPORT,
SEC_FUNCTION,
Expand Down
2 changes: 1 addition & 1 deletion manticore/wasm/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from dataclasses import dataclass
from ..core.smtlib import issymbolic, BitVec
from ctypes import *
import wasm
import wasm_tob as wasm
import struct
from ..core.state import Concretize

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ def rtd_dependent_deps():
"rlp",
"intervaltree",
"crytic-compile>=0.2.2",
"wasm",
# TODO: Change this when a release is published
"wasm-tob @ git+https://github.com/trail-of-forks/wasm-tob.git@ekilmer/init-fork#egg=wasm-tob",
"dataclasses; python_version < '3.7'",
"pyevmasm>=0.2.3",
]
Expand Down

0 comments on commit d8a39f7

Please sign in to comment.