Skip to content

Commit 608794f

Browse files
authored
fix: remove deprecated builder api port from buildoor (#1419)
1 parent 3a434cf commit 608794f

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/mev/buildoor/buildoor_launcher.star

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def launch_buildoor(
5050
"--builder-privkey={0}".format(builder_bls_key),
5151
"--wallet-privkey={0}".format(wallet_key),
5252
"--api-port={0}".format(BUILDOOR_API_PORT),
53-
"--builder-api-port={0}".format(BUILDOOR_BUILDER_API_PORT),
5453
]
5554

5655
if buildoor_params.builder_api:
@@ -85,9 +84,6 @@ def launch_buildoor(
8584
transport_protocol="TCP",
8685
application_protocol="http",
8786
),
88-
"builder-api": PortSpec(
89-
number=BUILDOOR_BUILDER_API_PORT, transport_protocol="TCP"
90-
),
9187
},
9288
cmd=cmd,
9389
files=files,
@@ -103,7 +99,7 @@ def launch_buildoor(
10399
"mev_endpoint": "http://{0}@{1}:{2}".format(
104100
constants.DEFAULT_MEV_PUBKEY,
105101
BUILDOOR_SERVICE_NAME,
106-
BUILDOOR_BUILDER_API_PORT,
102+
BUILDOOR_API_PORT,
107103
),
108104
"api_url": "http://{0}:{1}".format(
109105
BUILDOOR_SERVICE_NAME,

0 commit comments

Comments
 (0)