From 4743879b217b4f8ea89eeead457aa48994fea8f3 Mon Sep 17 00:00:00 2001 From: bkolad Date: Tue, 18 Jul 2023 14:33:36 +0200 Subject: [PATCH] test --- .../module-implementations/sov-evm/src/tests/tx_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module-system/module-implementations/sov-evm/src/tests/tx_tests.rs b/module-system/module-implementations/sov-evm/src/tests/tx_tests.rs index 440b7e108f..9fb4d3fc47 100644 --- a/module-system/module-implementations/sov-evm/src/tests/tx_tests.rs +++ b/module-system/module-implementations/sov-evm/src/tests/tx_tests.rs @@ -192,7 +192,7 @@ async fn send_tx_test_to_eth() -> Result<(), Box> { let from_addr = Address::from_str("0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266").unwrap(); - //let test_client = TestClient::new_anvil_client(chain_id, key, from_addr, contract).await; - let test_client = TestClient::new_demo_rollup_client(chain_id, key, from_addr, contract).await; + let test_client = TestClient::new_anvil_client(chain_id, key, from_addr, contract).await; + // let test_client = TestClient::new_demo_rollup_client(chain_id, key, from_addr, contract).await; test_client.execute().await }