Skip to content

Commit 0c70b6c

Browse files
committed
fixes bin builds for market maker and orderbook quoter server
1 parent 79018b8 commit 0c70b6c

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ config = { path = "config"}
4040

4141
[[bin]]
4242
name = "orderbook-quoter-server"
43-
path = "orderbook-quoter-server/src/main.rs"
43+
path = "bin/orderbook-quoter-server/src/main.rs"
4444

4545
[[bin]]
4646
name = "market-maker"
47-
path = "market-maker/src/main.rs"
47+
path = "bin/market-maker/src/main.rs"

integrative-testing-config.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1+
io_thread_percentage: 0.10
12
exchanges:
23
- client_name: "binance_usa_1"
34
host_uri:
4-
exchange_name: 1
5+
exchange_name: 0
56
snapshot_enabled: true
67
http_client: true
78
snapshot_uri: "http://localhost:5000"
89
ws_uri: "wss://localhost:5001"
910
ws_poll_rate_milliseconds: 99
11+
ws_presequenced_depth_buffer: 4000
1012
depth: 5000
1113
buffer_size: 2048
1214
watched_pair: "USDTBTC"
1315
- client_name: "binance_usa_2"
1416
host_uri:
15-
exchange_name: 2
17+
exchange_name: 1
1618
snapshot_enabled: true
1719
http_client: true
1820
snapshot_uri: "http://localhost:6000"
1921
ws_uri: "wss://localhost:6001"
2022
ws_poll_rate_milliseconds: 99
23+
ws_presequenced_depth_buffer: 4000
2124
depth: 5000
2225
buffer_size: 2048
2326
watched_pair: "USDTBTC"

0 commit comments

Comments
 (0)