Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: removed public ports in explorer #187

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions package_io/polkadot_js_app.star
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ def run_pokadot_js_app(plan, ws_url):
ports = {
"TCP" : PortSpec(80)
},
public_ports = {
"TCP" : PortSpec(80)
},
env_vars = {
"WS_URL": ws_url,
}
Expand All @@ -28,6 +25,5 @@ def run_pokadot_js_app(plan, ws_url):
explorer_service_details = {}
explorer_service_details["service_name"] = service_details.name
explorer_service_details["endpoint"] = utils.get_service_url("http", service_details.ip_address, 80)
explorer_service_details["endpoint_public"] = utils.get_service_url("http", "127.0.0.1", 80)
all_explorer_service_details[service_details.name] = explorer_service_details
return all_explorer_service_details