Skip to content
Merged
Changes from all commits
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
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("emulate", "--token_mint", str(ETH_TOKEN_MINT_ID), sender, contract, data, value)