This commit is contained in:
open-trade
2021-03-19 18:26:53 +08:00
parent 474b8abf18
commit 1d1249f8dd
2 changed files with 4 additions and 2 deletions

View File

@@ -7,6 +7,8 @@ use hbbs::*;
use ini::Ini; use ini::Ini;
use std::sync::{Arc, Mutex}; use std::sync::{Arc, Mutex};
const LICENSE_KEY: &'static str = "";
fn main() -> ResultType<()> { fn main() -> ResultType<()> {
init_from_env(Env::default().filter_or(DEFAULT_FILTER_ENV, "info")); init_from_env(Env::default().filter_or(DEFAULT_FILTER_ENV, "info"));
let args = format!( let args = format!(
@@ -83,7 +85,7 @@ fn main() -> ResultType<()> {
serial, serial,
rendezvous_servers, rendezvous_servers,
get_arg("software-url", ""), get_arg("software-url", ""),
"", LICENSE_KEY,
stop, stop,
)?; )?;
Ok(()) Ok(())