-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: implement the kurtosis package to run manta parachain local #8
feat: implement the kurtosis package to run manta parachain local #8
Conversation
parachain/manta.star
Outdated
@@ -0,0 +1,33 @@ | |||
def manta_run(plan,args): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change function to verb, Please follow a proper naming convention, (run_<chain/node name>)
parachain/manta.star
Outdated
) | ||
) | ||
|
||
def calamari_run(plan,args): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change function to verb, Please follow a proper naming convention, (run_<chain/node name>)
parachain/manta.star
Outdated
def run_calamari(plan,args): | ||
|
||
exec_command = [ "bin/sh","-c","/usr/local/bin/manta --chain=calamari-local --wasm-execution=compiled --force-authoring --port 30333 --rpc-port 9944 --rpc-external --rpc-cors all --rpc-methods=Unsafe -- --wasm-execution=compiled --chain=/app/rococo-local.json"] | ||
parachain = plan.add_service( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused variable 'parachain'
parachain/manta.star
Outdated
def run_manta(plan,args): | ||
|
||
exec_command = [ "bin/sh","-c","/usr/local/bin/manta --chain=manta-local --wasm-execution=compiled --force-authoring --port 30333 --rpc-port 9944 --rpc-external --rpc-cors all --rpc-methods=Unsafe -- --wasm-execution=compiled --chain=/app/rococo-local.json"] | ||
parachain = plan.add_service( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unused variable
parachain/manta.star
Outdated
@@ -0,0 +1,31 @@ | |||
def run_manta(plan, args): | |||
exec_command = ["bin/sh", "-c", "/usr/local/bin/manta --chain=manta-local --wasm-execution=compiled --force-authoring --port 30333 --rpc-port 9944 --rpc-external --rpc-cors all --rpc-methods=Unsafe -- --wasm-execution=compiled --chain=/app/rococo-local.json"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
format this please
parachain/manta.star
Outdated
exec_command = ["bin/sh", "-c", "/usr/local/bin/manta --chain=calamari-local --wasm-execution=compiled --force-authoring --port 30333 --rpc-port 9944 --rpc-external --rpc-cors all --rpc-methods=Unsafe -- --wasm-execution=compiled --chain=/app/rococo-local.json"] | ||
plan.add_service( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please format this line
Description:
implement the kurtosis package to run manta parachain local
Commit Message
feat: implement the kurtosis package to run manta parachain local
see the guidelines for commit messages.
Changelog Entry
Checklist: