Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix contract report: "twiggy" dependency is managed by "deps rust" #419

Merged
merged 4 commits into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
8 changes: 4 additions & 4 deletions multiversx_sdk_cli/tests/test_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "multiversx-sdk-cli"
version = "9.5.2"
version = "9.5.3"
authors = [
{ name="MultiversX" },
]
Expand Down
Loading