From 5d988ad0c2c8a453127b202493d2851ba49c4d08 Mon Sep 17 00:00:00 2001 From: Shanith K K Date: Mon, 30 Oct 2023 12:41:06 +0530 Subject: [PATCH] style: code format --- parachain/manta.star | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/parachain/manta.star b/parachain/manta.star index a725df1..1757a23 100644 --- a/parachain/manta.star +++ b/parachain/manta.star @@ -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( @@ -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(