Skip to content

Commit 4227c70

Browse files
committed
rename dummy-proxy nginx hostname to builder-hub-api
1 parent 5fa75bd commit 4227c70

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/checks.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ jobs:
6363
- name: Install golangci-lint
6464
run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.2
6565

66-
- name: Install NilAway
67-
run: go install go.uber.org/nilaway/cmd/nilaway@v0.0.0-20240821220108-c91e71c080b7
68-
6966
- name: Lint
7067
run: make lint
7168

docker/docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
start_period: 2s
1919
timeout: 5s
2020

21-
web:
21+
builder-hub-api:
2222
image: flashbots/builder-hub
2323
build:
2424
context: ../.
@@ -46,8 +46,8 @@ services:
4646
proxy:
4747
image: flashbots/builder-hub-mock-proxy
4848
links:
49-
- "web:web"
49+
- "builder-hub-api:builder-hub-api"
5050
ports:
5151
- 127.0.0.1:8888:8888
5252
environment:
53-
TARGET: "http://web:8080"
53+
TARGET: "http://builder-hub-api:8080"

docker/mock-proxy/nginx-default.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ server {
33
listen 8888;
44

55
location / {
6-
proxy_pass http://web:8080;
6+
proxy_pass http://builder-hub-api:8080;
77
proxy_set_header X-Flashbots-Attestation-Type 'test';
88
proxy_set_header X-Flashbots-Measurement '{}';
99
proxy_set_header X-Forwarded-For '1.2.3.4';

0 commit comments

Comments
 (0)