Skip to content

Commit

Permalink
Fix univ3 error log
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinquaXD committed Mar 22, 2024
1 parent d756379 commit 386622e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/autopilot/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ pub async fn run(args: Arguments) {
.shared
.uniswap_v3_graph_url
.as_ref()
.expect("provide a uniswapV3 subgraph url when enabling balancer liquidity");
.expect("provide a uniswapV3 subgraph url when enabling uniswapV3 liquidity");
match UniswapV3PoolFetcher::new(
graph_url,
web3.clone(),
Expand Down
2 changes: 1 addition & 1 deletion crates/orderbook/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ pub async fn run(args: Arguments) {
.shared
.uniswap_v3_graph_url
.as_ref()
.expect("provide a uniswapV3 subgraph url when enabling balancer liquidity");
.expect("provide a uniswapV3 subgraph url when enabling uniswapV3 liquidity");
match UniswapV3PoolFetcher::new(
graph_url,
web3.clone(),
Expand Down

0 comments on commit 386622e

Please sign in to comment.