Updates teosd.service, adds tor link

This commit is contained in:
Sergi Delgado Segura 2023-01-25 16:28:37 -05:00
parent 0cf3d97523
commit 403044298f
No known key found for this signature in database
GPG key ID: 35DDB7126CCB7618
2 changed files with 4 additions and 3 deletions

View file

@ -1,8 +1,9 @@
[Unit]
Description=The Eye of Satoshi daemon
After=bitcoind.service network.target
Requires=bitcoind.service
Wants=network.target
After=bitcoind.service
Wants=network-online.target
After=network-online.target
[Service]
ExecStart=/home/teos/.cargo/bin/teosd

View file

@ -158,7 +158,7 @@ async fn main() {
_ => e.to_string(),
};
log::error!("Failed to connect to bitcoind. Error: {}", e_msg);
return;
std::process::exit(1);
}
};