Skip to content

Commit

Permalink
fix(solis): auth solis (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybensacq authored Aug 22, 2024
1 parent 1be79f6 commit de1c664
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions bin/solis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ clap_complete.workspace = true
common.workspace = true
console.workspace = true
dojo-metrics.workspace = true
dotenv = "0.15.0"
katana-core.workspace = true
katana-executor.workspace = true
katana-primitives.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion bin/solis/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//! and leak detection functionality. See [jemalloc's opt.prof](https://jemalloc.net/jemalloc.3.html#opt.prof)
//! documentation for usage details. This is **not recommended on Windows**. See [here](https://rust-lang.github.io/rfcs/1974-global-allocators.html#jemalloc)
//! for more info.
use std::env;
use std::net::SocketAddr;
use std::path::PathBuf;

Expand Down
2 changes: 2 additions & 0 deletions bin/solis/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ pub(crate) const LOG_TARGET: &str = "katana::cli";

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
dotenv::dotenv().ok();

let args = KatanaArgs::parse();
args.init_logging()?;

Expand Down

0 comments on commit de1c664

Please sign in to comment.