Skip to content

Commit

Permalink
Merge pull request #419 from multiversx/fix-contract-report
Browse files Browse the repository at this point in the history
Fix contract report: "twiggy" dependency is managed by "deps rust"
  • Loading branch information
andreibancioiu authored Apr 8, 2024
2 parents 100a57d + 7dbb124 commit c8b95fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
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

0 comments on commit c8b95fc

Please sign in to comment.