Skip to content

Commit

Permalink
Use fixed owner and attacker accounts in multi_tx_analysis (#2464)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggrieco-tob committed Jul 6, 2021
1 parent 2a56484 commit fb2765f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manticore/ethereum/manticore.py
Original file line number Diff line number Diff line change
Expand Up @@ -1065,8 +1065,8 @@ def multi_tx_analysis(
args=None,
compile_args=None,
):
owner_account = self.create_account(balance=10 ** 10, name="owner")
attacker_account = self.create_account(balance=10 ** 10, name="attacker")
owner_account = self.create_account(balance=10 ** 10, name="owner", address=0x10000)
attacker_account = self.create_account(balance=10 ** 10, name="attacker", address=0x20000)
# Pretty print
logger.info("Starting symbolic create contract")

Expand Down

0 comments on commit fb2765f

Please sign in to comment.