diff --git a/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py b/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py index 8d8cbab3..31fa51ff 100644 --- a/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py +++ b/multiversx_sdk_cli/projects/report/features/twiggy_paths_check.py @@ -31,7 +31,6 @@ def run_twiggy_paths(wasm_path: Path) -> Path: rust = dependencies.get_module_by_key("rust") debug_wasm_path = _get_debug_wasm_path(wasm_path) - dependencies.install_module("twiggy") twiggy_paths_args = ["twiggy", "paths", str(debug_wasm_path)] output = myprocess.run_process(twiggy_paths_args, env=rust.get_env(), cwd=debug_wasm_path.parent, dump_to_stdout=False) diff --git a/multiversx_sdk_cli/tests/test_proxy.py b/multiversx_sdk_cli/tests/test_proxy.py index e49cb06c..969aecd2 100644 --- a/multiversx_sdk_cli/tests/test_proxy.py +++ b/multiversx_sdk_cli/tests/test_proxy.py @@ -32,11 +32,11 @@ def test_query_contract(): [ "contract", "query", - "erd1qqqqqqqqqqqqqpgq8z2zzyu30f4607hth0tfj5m3vpjvwrvvrawqw09jem", + "erd1qqqqqqqqqqqqqpgq6qr0w0zzyysklfneh32eqp2cf383zc89d8sstnkl60", "--function", "getSum", "--proxy", - "https://testnet-api.multiversx.com", + "https://devnet-api.multiversx.com", ] ) assert False if result else True @@ -48,9 +48,9 @@ def test_get_transaction(): "tx", "get", "--proxy", - "https://testnet-api.multiversx.com", + "https://devnet-api.multiversx.com", "--hash", - "bf63fdd7d74cbc78f1ec0fbad05f156984a5c995b782e1947352210dd80c5164", + "06f381ee88ed27ba08a35f995f17dceb737e1a99c5c4da0c247bbe7aa1d18551", ] ) assert False if result else True diff --git a/pyproject.toml b/pyproject.toml index 7c281509..6db71980 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "multiversx-sdk-cli" -version = "9.5.2" +version = "9.5.3" authors = [ { name="MultiversX" }, ]