Skip to content

Commit

Permalink
refactor: change function to verb
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 21d06b4 commit 1907fb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parachain/manta.star
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def manta_run(plan,args):
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(
Expand All @@ -15,7 +15,7 @@ def manta_run(plan,args):
)
)

def calamari_run(plan,args):
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(
Expand Down

0 comments on commit 1907fb1

Please sign in to comment.