Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
impl
  • Loading branch information
sinev-valentine committed Dec 21, 2021
commit f40f12b8ce93ad8b866b204c63433e4f0c789e7e
4 changes: 2 additions & 2 deletions proxy/common_neon/emulator_interactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging

from .errors import EthereumError
from ..environment import neon_cli
from ..environment import neon_cli, ETH_TOKEN_MINT_ID


logger = logging.getLogger(__name__)
Expand Down Expand Up @@ -31,4 +31,4 @@ def call_emulated(contract_id, caller_id, data=None, value=None):
def emulator(contract, sender, data, value):
data = data or "none"
value = value or ""
return neon_cli().call("emulate", sender, contract, data, value)
return neon_cli().call("--token_mint", ETH_TOKEN_MINT_ID, "emulate", sender, contract, data, value)