Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
c4e16e64
Commit
c4e16e64
authored
Nov 03, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new lines
parent
62fd2108
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
6 deletions
+7
-6
cl_client_context.star
src/participant_network/cl/cl_client_context.star
+1
-1
cl_node_metrics_info.star
src/participant_network/cl/cl_node_metrics_info.star
+1
-1
el_client_context.star
src/participant_network/el/el_client_context.star
+1
-1
mev_boost_context.star
src/participant_network/mev_boost/mev_boost_context.star
+1
-1
mev_boost_launcher.star
src/participant_network/mev_boost/mev_boost_launcher.star
+1
-0
participant.star
src/participant_network/participant.star
+1
-1
shared_utils.star
src/shared_utils/shared_utils.star
+1
-1
No files found.
src/participant_network/cl/cl_client_context.star
View file @
c4e16e64
...
@@ -6,4 +6,4 @@ def new_cl_client_context(client_name, enr, ip_addr, http_port_num, cl_nodes_met
...
@@ -6,4 +6,4 @@ def new_cl_client_context(client_name, enr, ip_addr, http_port_num, cl_nodes_met
ip_addr = ip_addr,
ip_addr = ip_addr,
http_port_num = http_port_num,
http_port_num = http_port_num,
cl_nodes_metrics_info = cl_nodes_metrics_info,
cl_nodes_metrics_info = cl_nodes_metrics_info,
)
)
\ No newline at end of file
src/participant_network/cl/cl_node_metrics_info.star
View file @
c4e16e64
...
@@ -4,4 +4,4 @@ def new_cl_node_metrics_info(name, path, url):
...
@@ -4,4 +4,4 @@ def new_cl_node_metrics_info(name, path, url):
"name": name,
"name": name,
"path": path,
"path": path,
"url": url
"url": url
}
}
\ No newline at end of file
src/participant_network/el/el_client_context.star
View file @
c4e16e64
...
@@ -7,4 +7,4 @@ def new_el_client_context(client_name, enr, enode, ip_addr, rpc_port_num, ws_por
...
@@ -7,4 +7,4 @@ def new_el_client_context(client_name, enr, enode, ip_addr, rpc_port_num, ws_por
rpc_port_num = rpc_port_num,
rpc_port_num = rpc_port_num,
ws_port_num = ws_port_num,
ws_port_num = ws_port_num,
engine_rpc_port_num = engine_rpc_port_num
engine_rpc_port_num = engine_rpc_port_num
)
)
\ No newline at end of file
src/participant_network/mev_boost/mev_boost_context.star
View file @
c4e16e64
...
@@ -6,4 +6,4 @@ def new_mev_boost_context(private_ip_address, port):
...
@@ -6,4 +6,4 @@ def new_mev_boost_context(private_ip_address, port):
def mev_boost_endpoint(mev_boost_context):
def mev_boost_endpoint(mev_boost_context):
return "http://{0}:{1}".format(mev_boost_context.private_ip_address, mev_boost_context.port)
return "http://{0}:{1}".format(mev_boost_context.private_ip_address, mev_boost_context.port)
\ No newline at end of file
src/participant_network/mev_boost/mev_boost_launcher.star
View file @
c4e16e64
...
@@ -45,3 +45,4 @@ def get_service_config(mev_boost_launcher, network_id):
...
@@ -45,3 +45,4 @@ def get_service_config(mev_boost_launcher, network_id):
def new_mev_boost_launcher(should_check_relay, relay_end_points):
def new_mev_boost_launcher(should_check_relay, relay_end_points):
return struct(should_check_relay=should_check_relay, relay_end_points=relay_end_points)
return struct(should_check_relay=should_check_relay, relay_end_points=relay_end_points)
src/participant_network/participant.star
View file @
c4e16e64
...
@@ -5,4 +5,4 @@ def new_participant(el_client_type, cl_client_type, el_client_context, cl_client
...
@@ -5,4 +5,4 @@ def new_participant(el_client_type, cl_client_type, el_client_context, cl_client
el_client_context = el_client_context,
el_client_context = el_client_context,
cl_client_context = cl_client_context,
cl_client_context = cl_client_context,
mev_boost_context = mev_boost_context
mev_boost_context = mev_boost_context
)
)
\ No newline at end of file
src/shared_utils/shared_utils.star
View file @
c4e16e64
...
@@ -13,4 +13,4 @@ def path_base(path):
...
@@ -13,4 +13,4 @@ def path_base(path):
def new_port_spec(number, protocol):
def new_port_spec(number, protocol):
return struct(number = number, protocol = protocol)
return struct(number = number, protocol = protocol)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment