Skip to content

Commit

Permalink
fix: remove localhost network used to test dev_ticker_server locally
Browse files Browse the repository at this point in the history
  • Loading branch information
antomor committed Oct 12, 2023
1 parent dcd53d8 commit ea5aa92
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions core/bin/zksync_api/src/bin/dev_ticker_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ async fn main() -> std::io::Result<()> {
.wrap(Cors::default().send_wildcard().max_age(3600))
.wrap(middleware::Logger::default());
match network {
// FIXME: remove localhost
Network::Localhost | Network::Testnet => base_app
Network::Testnet => base_app
.app_data(shared_data.clone())
.service(proxy_price_provider::create_price_service())
.service(proxy_liquidity_provider::config_liquidity_app()),
Expand Down

0 comments on commit ea5aa92

Please sign in to comment.