Skip to content

Commit

Permalink
* fix settings
Browse files Browse the repository at this point in the history
  • Loading branch information
gigimon committed Mar 19, 2024
1 parent c07bcd6 commit f1b2072
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions envs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"network_ids": {
"neon": 111,
"sol": 112,
"usd": 113,
"usdt": 113,
"eth": 114
},
"solana_url": "http://proxy.night.stand.neontest.xyz/node-solana",
Expand Down Expand Up @@ -140,7 +140,7 @@
"network_ids": {
"neon": 111,
"sol": 112,
"usd": 113,
"usdt": 113,
"eth": 114
},
"solana_url": "http://127.0.0.1:8899/",
Expand Down
3 changes: 2 additions & 1 deletion integration/tests/basic/test_payment_in_different_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,9 @@ def test_call_different_chains_contracts_in_one_transaction(
bunch_contract_neon, _ = self.web3_client.deploy_and_get_contract(
contract="common/Common", version="0.8.12", contract_name="BunchActions", account=alice
)

print("CHAINS", chains)
for chain in chains:
print("Chain ", chain)
bunch_contract = chains[chain]["client"].get_deployed_contract(
bunch_contract_neon.address, "common/Common", contract_name="BunchActions"
)
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def account_with_all_tokens(
operator_keypair,
evm_loader_keypair,
):
neon_account = web3_client.create_account_with_balance(faucet, bank_account=eth_bank_account)
neon_account = web3_client.create_account_with_balance(faucet, bank_account=eth_bank_account, amount=500)
if web3_client_sol:
sol_client_session.request_airdrop(solana_account.public_key, 1 * LAMPORT_PER_SOL)
sol_client_session.deposit_wrapped_sol_from_solana_to_neon(
Expand Down

0 comments on commit f1b2072

Please sign in to comment.