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 cc2c945 commit 6a194ae
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
15 changes: 0 additions & 15 deletions parachain/kylin.star

This file was deleted.

36 changes: 25 additions & 11 deletions parachain/parallel.star
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
def run_parallel(plan,args):

exec_command = [ "--chain=kerria-dev","--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"]
def run_parallel(plan, args):
exec_command = [
"--chain=kerria-dev",
"--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(
name = "parallel",
config = ServiceConfig(
image = "parallelfinance/parallel:latest",
files={
"/app":"output"
files = {
"/app": "output",
},
ports = {
"parachain" : PortSpec(9944, transport_protocol="TCP"),
"parachain": PortSpec(9944, transport_protocol = "TCP"),
},
cmd=exec_command
)
)
cmd = exec_command,
),
)

0 comments on commit 6a194ae

Please sign in to comment.