Skip to content

Commit

Permalink
refactor: change function name from run to run_nodle
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Oct 30, 2023
1 parent c559a80 commit 6f0dbf1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions parachain/nodle.star
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
def run(plan):
exec_command = ["--chain=local", "--collator", "--rpc-external", "--rpc-cors=all", "--rpc-methods=unsafe", "--tmp", "--", "--chain=/app/rococo-local.json", "--execution=wasm"]

def run_nodle(plan):
exec_command = [
"--chain=local",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--tmp",
"--",
"--chain=/app/rococo-local.json",
"--execution=wasm"
]
nodle_service_config = ServiceConfig(
image = "nodlecode/chain:latest",
files = {
Expand Down

0 comments on commit 6f0dbf1

Please sign in to comment.