Skip to content

Commit

Permalink
point DAL to l1
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Dec 11, 2023
1 parent ad3506b commit 21997af
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mkchain/tqchain/mkchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,14 +256,16 @@ def main():

dalNodes = {
f"{DAL_NODE_NAME}-{n}": {
"attesterProfile": "tretre"
"attesterProfile": "tretre",
"node_rpc_url": f"http://{L1_NODE_NAME}-0.{L1_NODE_NAME}:8732"
}
for n in range(args.dal_nodes)
}
if args.dal_nodes:
# add bootstrap dal node
dalNodes["bootstrap"] = {
"bootstrapProfile": True
"bootstrapProfile": True,
"node_rpc_url": f"http://{L1_NODE_NAME}-0.{L1_NODE_NAME}:8732"
}

octezSigners = {
Expand Down

0 comments on commit 21997af

Please sign in to comment.