Skip to content

Commit 112d7b9

Browse files
committed
[examples] Fix script path & disable multisig test
1 parent 8c2f06b commit 112d7b9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ examples:
3737
examples_cli:
3838
poetry run python -m examples.hello_blockchain
3939
# poetry run python -m examples.large_package_publisher CURRENTLY BROKEN -- OUT OF GAS
40-
poetry run python -m examples.multisig
40+
#poetry run python -m examples.multisig CURRENTLY BROKEN requires aptos-core checkout
4141
poetry run python -m examples.object_code_deployment
4242
poetry run python -m examples.your_coin
4343

examples/multisig.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,10 @@ async def main(should_wait_input=True):
417417
# :!:>section_12
418418
print("\n=== Invoking Move script ===")
419419

420-
with open(f"{build_path}bytecode_scripts/set_and_transfer_0.mv", "rb") as f:
420+
with open(
421+
f"{packages_dir}/upgrade/build/UpgradeAndGovern/bytecode_scripts/set_and_transfer_0.mv",
422+
"rb",
423+
) as f:
421424
script_code = f.read()
422425

423426
payload = Script(

0 commit comments

Comments
 (0)