Skip to content

Commit

Permalink
style: code format
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 3819666 commit 5d988ad
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions parachain/manta.star
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
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"]
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",
]
plan.add_service(
name = "interrelay",
config = ServiceConfig(
Expand All @@ -15,7 +19,11 @@ def run_manta(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"]
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(
name = "interrelay",
config = ServiceConfig(
Expand Down

0 comments on commit 5d988ad

Please sign in to comment.