Skip to content

Commit

Permalink
Merge pull request #107 from propeller-heads/vm/tnl/change-explorer-name
Browse files Browse the repository at this point in the history
chore: Change explorer to price_printer
  • Loading branch information
tamaralipows authored Dec 17, 2024
2 parents fac2754 + 78832c8 commit 8be7671
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ tracing-subscriber = { version = "0.3.17", default-features = false, features =
] }
tempfile = "3.13.0"

# explorer example
# price_printer example
clap = { version = "4.5.3", features = ["derive"] }
anyhow = "1.0.79"
ratatui = "0.29.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ quotes from each pool in Ethereum.

```bash
export RPC_URL=<your-eth-rpc-url>
cargo run --release --example explorer -- --tvl-threshold 1000
cargo run --release --example price_printer -- --tvl-threshold 1000
```
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use tracing_subscriber::{fmt, EnvFilter};

pub fn setup_tracing() {
let writer = tracing_appender::rolling::daily("logs", "explorer.log");
let writer = tracing_appender::rolling::daily("logs", "price_printer.log");
// Create a subscriber with the file appender
let subscriber = fmt()
.with_writer(writer)
Expand Down

0 comments on commit 8be7671

Please sign in to comment.