File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ examples:
3737examples_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
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments