Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
shanithkk committed Oct 30, 2023
1 parent 15bbd74 commit 029c0cc
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions parachain/kylin.star
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
def run_kylin(plan,args):

exec_command = ["--base-path=/kylin/data","--chain=dev","--ws-external","--rpc-external","--rpc-cors=all","--name=parachain-2010-0","--collator","--rpc-methods=unsafe","--force-authoring","--execution=wasm","--alice","--node-key=52194369e4c881e4157b74fd00dff4241e50b8100b823273e25c868a70e5cde8","--","--chain=/app/rococo-local.json","--execution=wasm"]
def run_kylin(plan, args):
exec_command = ["--base-path=/kylin/data", "--chain=dev", "--ws-external", "--rpc-external", "--rpc-cors=all", "--name=parachain-2010-0", "--collator", "--rpc-methods=unsafe", "--force-authoring", "--execution=wasm", "--alice", "--node-key=52194369e4c881e4157b74fd00dff4241e50b8100b823273e25c868a70e5cde8", "--", "--chain=/app/rococo-local.json", "--execution=wasm"]
plan.add_service(
name="kylin",
config= ServiceConfig(
name = "kylin",
config = ServiceConfig(
image = "kylinnetworks/kylin-collator:ro-v0.9.30",
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 029c0cc

Please sign in to comment.