Skip to content

Commit

Permalink
Merge pull request #243 from nomic-io/testnet-6.5
Browse files Browse the repository at this point in the history
Testnet 6.5
  • Loading branch information
mappum authored Oct 26, 2023
2 parents 36eb536 + cdbd061 commit 198155a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "nomic"
version = "6.4.2"
version = "6.5.0"
authors = ["The Nomic Team <[email protected]>"]
edition = "2021"
default-run = "nomic"

[dependencies]
bitcoin = { version = "0.29.2", features = ["serde", "rand"] }
orga = { git = "https://github.com/nomic-io/orga.git", rev = "973b51d6bdf181096521050dfbdf32c80f9ceda3", features = [
orga = { git = "https://github.com/nomic-io/orga.git", rev = "7c3b820d1a5dd9059f7b039e354fd5e76add81d0", features = [
"merk-verify",
] }
thiserror = "1.0.30"
Expand Down Expand Up @@ -66,7 +66,7 @@ toml = { version = "0.7.2", features = ["parse"] }
semver = "1.0.18"

[features]
default = ["full", "feat-ibc", "testnet"]
default = ["full", "feat-ibc", "testnet", "legacy-bin"]
full = [
"bitcoincore-rpc-async",
"clap",
Expand Down
2 changes: 1 addition & 1 deletion networks/testnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ btc_relayer = [
"https://relayer.nomic-testnet.mappum.io:8443"
]

legacy_version = "=6.3"
legacy_version = "6.4"

genesis = """
{
Expand Down
8 changes: 4 additions & 4 deletions rest/Cargo.lock

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

2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub struct InnerApp {

#[orga]
impl InnerApp {
pub const CONSENSUS_VERSION: u8 = 8;
pub const CONSENSUS_VERSION: u8 = 9;

#[cfg(feature = "full")]
fn configure_faucets(&mut self) -> Result<()> {
Expand Down
1 change: 1 addition & 0 deletions src/bin/nomic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ impl StartCmd {
false,
#[cfg(not(feature = "testnet"))]
true,
true,
);
}
if cmd.skip_init_chain {
Expand Down

0 comments on commit 198155a

Please sign in to comment.