-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Amin Razavi
committed
Sep 5, 2023
1 parent
1946e40
commit e4aec4b
Showing
4 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sgx_server" | ||
version ="0.4.3" | ||
version ="0.4.4" | ||
edition = "2021" | ||
|
||
[[bin]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
pub const VERSION: &str = "0.4.3"; | ||
pub const VERSION: &str = "0.4.4"; | ||
pub const ATTESTATION_SERVER_URL: &str = if cfg!(feature = "alpha-net") { | ||
// PRODUCTION-KEY when binary is built by github | ||
"https://alphanet-attestation.ternoa.network/attest" | ||
|
@@ -7,7 +7,7 @@ pub const ATTESTATION_SERVER_URL: &str = if cfg!(feature = "alpha-net") { | |
"https://mainnet-attestation.ternoa.network/attest" | ||
} else { | ||
// DEVELOPMENT-KEY when binary is built locally | ||
"https://dev-c1n3.ternoa.network:9100/attest" | ||
"https://dev-attestation.ternoa.network/attest" | ||
}; | ||
|
||
pub const SENTRY_URL: &str = "https://[email protected]/22"; | ||
|