Skip to content

Commit 495d429

Browse files
committed
Testing wasm-tob forked wasm module
1 parent ba004ef commit 495d429

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

manticore/wasm/structure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
from ..utils.event import Eventful
5050
from ..utils import config
5151

52-
from wasm import decode_module, Section
53-
from wasm.wasmtypes import (
52+
from wasm_tob import decode_module, Section
53+
from wasm_tob.wasmtypes import (
5454
SEC_TYPE,
5555
SEC_IMPORT,
5656
SEC_FUNCTION,

manticore/wasm/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from dataclasses import dataclass
33
from ..core.smtlib import issymbolic, BitVec
44
from ctypes import *
5-
import wasm
5+
import wasm_tob as wasm
66
import struct
77
from ..core.state import Concretize
88

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def rtd_dependent_deps():
7676
"rlp",
7777
"intervaltree",
7878
"crytic-compile>=0.2.2",
79-
"wasm",
79+
"git+https://github.com/trail-of-forks/wasm-tob.git@ekilmer/init-fork#egg=wasm-tob",
8080
"dataclasses; python_version < '3.7'",
8181
"pyevmasm>=0.2.3",
8282
]

0 commit comments

Comments
 (0)