chore: Release v1.9.0 (#8734)
* Updates `EOS_PANIC_AFTER` end of support constant from 16 weeks to 14 weeks, so the Mainnet panic height is just before the second halving and end of the current dev fund. * version bumps * Updates CHANGELOG.md * Updates changelog * updates end of support time to 10 weeks * Adds a note to the changelog about recovering after finalizing blocks from a fork * Add new changes on main to CHANGELOG.md * Updates ESTIMATED_RELEASE_HEIGHT * Apply suggestions from code review Co-authored-by: Conrado Gouvea <conrado@zfnd.org> * Update zebrad/src/components/sync/end_of_support.rs --------- Co-authored-by: Conrado Gouvea <conrado@zfnd.org>
This commit is contained in:
parent
adde5c92f3
commit
8b1be8846e
53
CHANGELOG.md
53
CHANGELOG.md
|
@ -5,6 +5,59 @@ All notable changes to Zebra are documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org).
|
and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
|
## [Zebra 1.9.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.9.0) - 2024-08-02
|
||||||
|
|
||||||
|
This release includes deployment of NU6 on Testnet, configurable funding streams on custom Testnets, and updates Zebra's end-of-support (EoS)
|
||||||
|
from 16 weeks to 10 weeks so that it will panic before the expected activation height of NU6 on Mainnet.
|
||||||
|
|
||||||
|
It also replaces the `shielded-scan` compilation feature with a new `zebra-scanner` binary, adds a `TrustedChainSync` module
|
||||||
|
for replicating Zebra's best chain state, and a gRPC server in `zebra-rpc` as steps towards zcashd deprecation.
|
||||||
|
|
||||||
|
#### Recovering after finalizing a block from a chain fork
|
||||||
|
|
||||||
|
Zebra doesn't enforce an end-of-support height on Testnet, and previous versions of Zebra could mine or follow a chain fork that does not
|
||||||
|
activate NU6 on Testnet at height 2976000. Once a block from a fork is finalized in Zebra's state cache, updating to a version of Zebra that
|
||||||
|
does expect NU6 activation at that height will result in Zebra getting stuck, as it cannot rollback its finalized state. This can be resolved
|
||||||
|
by syncing Zebra from scratch, or by using the `copy-state` command to create a new state cache up to height 2975999. To use the `copy-state`
|
||||||
|
command, first make a copy Zebra's Testnet configuration with a different cache directory path, for example, if Zebra's configuration is at the
|
||||||
|
default path, by running `cp ~/.config/zebrad.toml ./zebrad-copy-target.toml`, then opening the new configuration file and editing the
|
||||||
|
`cache_dir` path in the `state` section. Once there's a copy of Zebra's configuration with the new state cache directory path, run:
|
||||||
|
`zebrad copy-state --target-config-path "./zebrad-copy-target.toml" --max-source-height "2975999"`, and then update the original
|
||||||
|
Zebra configuration to use the new state cache directory.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- A `zebra-scanner` binary replacing the `shielded-scan` compilation feature in `zebrad` ([#8608](https://github.com/ZcashFoundation/zebra/pull/8608))
|
||||||
|
- Adds a `TrustedChainSync` module for keeping up with Zebra's non-finalized best chain from a separate process ([#8596](https://github.com/ZcashFoundation/zebra/pull/8596))
|
||||||
|
- Add a tonic server in zebra-rpc with a `chain_tip_change()` method that notifies clients when Zebra's best chain tip changes ([#8674](https://github.com/ZcashFoundation/zebra/pull/8674))
|
||||||
|
- NU6 network upgrade variant, minimum protocol version, and Testnet activation height ([#8693](https://github.com/ZcashFoundation/zebra/pull/8693), [8733](https://github.com/ZcashFoundation/zebra/pull/8733), [#8804](https://github.com/ZcashFoundation/zebra/pull/8804))
|
||||||
|
- Configurable NU6 activation height on Regtest ([#8700](https://github.com/ZcashFoundation/zebra/pull/8700))
|
||||||
|
- Configurable Testnet funding streams ([#8718](https://github.com/ZcashFoundation/zebra/pull/8718))
|
||||||
|
- Post-NU6 funding streams, including a lockbox funding stream ([#8694](https://github.com/ZcashFoundation/zebra/pull/8694))
|
||||||
|
- Add value pool balances to `getblockchaininfo` RPC method response ([#8769](https://github.com/ZcashFoundation/zebra/pull/8769))
|
||||||
|
- Add NU6 lockbox funding stream information to `getblocksubsidy` RPC method response ([#8742](https://github.com/ZcashFoundation/zebra/pull/8742))
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Reduce the end-of-support halt time from 16 weeks to 10 weeks ([#8734](https://github.com/ZcashFoundation/zebra/pull/8734))
|
||||||
|
- Bump the current protocol version from 170100 to 170110 ([#8804](https://github.com/ZcashFoundation/zebra/pull/8804))
|
||||||
|
- Track the balance of the deferred chain value pool ([#8732](https://github.com/ZcashFoundation/zebra/pull/8732), [#8729](https://github.com/ZcashFoundation/zebra/pull/8729))
|
||||||
|
- Require that coinbase transactions balance exactly after NU6 activation ([#8727](https://github.com/ZcashFoundation/zebra/pull/8727))
|
||||||
|
- Support in-place disk format upgrades for major database version bumps ([#8748](https://github.com/ZcashFoundation/zebra/pull/8748))
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Return full network upgrade activation list in `getblockchaininfo` method ([#8699](https://github.com/ZcashFoundation/zebra/pull/8699))
|
||||||
|
- Update documentation for the new `zebra-scanner` binary ([#8675](https://github.com/ZcashFoundation/zebra/pull/8675))
|
||||||
|
- Update documentation for using Zebra with lightwalletd ([#8714](https://github.com/ZcashFoundation/zebra/pull/8714))
|
||||||
|
- Reduce debug output for Network on Regtest and default Testnet ([#8760](https://github.com/ZcashFoundation/zebra/pull/8760))
|
||||||
|
|
||||||
|
### Contributors
|
||||||
|
|
||||||
|
Thank you to everyone who contributed to this release, we couldn't make Zebra without you:
|
||||||
|
@arya2, @conradoplg, @dependabot[bot], @oxarbitrage, @therealyingtong and @upbqdn
|
||||||
|
|
||||||
|
|
||||||
## [Zebra 1.8.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.8.0) - 2024-07-02
|
## [Zebra 1.8.0](https://github.com/ZcashFoundation/zebra/releases/tag/v1.8.0) - 2024-07-02
|
||||||
|
|
||||||
- Zebra now uses a default unpaid actions limit of 0, dropping transactions with
|
- Zebra now uses a default unpaid actions limit of 0, dropping transactions with
|
||||||
|
|
28
Cargo.lock
28
Cargo.lock
|
@ -4708,7 +4708,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tower-batch-control"
|
name = "tower-batch-control"
|
||||||
version = "0.2.41-beta.14"
|
version = "0.2.41-beta.15"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"ed25519-zebra",
|
"ed25519-zebra",
|
||||||
|
@ -4731,7 +4731,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tower-fallback"
|
name = "tower-fallback"
|
||||||
version = "0.2.41-beta.14"
|
version = "0.2.41-beta.15"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-core",
|
"futures-core",
|
||||||
"pin-project",
|
"pin-project",
|
||||||
|
@ -5951,7 +5951,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-chain"
|
name = "zebra-chain"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
"bitflags-serde-legacy",
|
"bitflags-serde-legacy",
|
||||||
|
@ -6014,7 +6014,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-consensus"
|
name = "zebra-consensus"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bellman",
|
"bellman",
|
||||||
"blake2b_simd",
|
"blake2b_simd",
|
||||||
|
@ -6060,7 +6060,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-grpc"
|
name = "zebra-grpc"
|
||||||
version = "0.1.0-alpha.5"
|
version = "0.1.0-alpha.6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
|
@ -6082,7 +6082,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-network"
|
name = "zebra-network"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.6.0",
|
"bitflags 2.6.0",
|
||||||
"byteorder",
|
"byteorder",
|
||||||
|
@ -6123,7 +6123,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-node-services"
|
name = "zebra-node-services"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"jsonrpc-core",
|
"jsonrpc-core",
|
||||||
|
@ -6136,7 +6136,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-rpc"
|
name = "zebra-rpc"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"futures",
|
"futures",
|
||||||
|
@ -6172,7 +6172,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-scan"
|
name = "zebra-scan"
|
||||||
version = "0.1.0-alpha.7"
|
version = "0.1.0-alpha.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bls12_381",
|
"bls12_381",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -6218,7 +6218,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-script"
|
name = "zebra-script"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hex",
|
"hex",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
|
@ -6230,7 +6230,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-state"
|
name = "zebra-state"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bincode",
|
"bincode",
|
||||||
"chrono",
|
"chrono",
|
||||||
|
@ -6275,7 +6275,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-test"
|
name = "zebra-test"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"futures",
|
"futures",
|
||||||
|
@ -6303,7 +6303,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebra-utils"
|
name = "zebra-utils"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"color-eyre",
|
"color-eyre",
|
||||||
"hex",
|
"hex",
|
||||||
|
@ -6334,7 +6334,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zebrad"
|
name = "zebrad"
|
||||||
version = "1.8.0"
|
version = "1.9.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"abscissa_core",
|
"abscissa_core",
|
||||||
"atty",
|
"atty",
|
||||||
|
|
|
@ -37,7 +37,7 @@ docker run -d --platform linux/amd64 \
|
||||||
### Build it locally
|
### Build it locally
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
git clone --depth 1 --branch v1.8.0 https://github.com/ZcashFoundation/zebra.git
|
git clone --depth 1 --branch v1.9.0 https://github.com/ZcashFoundation/zebra.git
|
||||||
docker build --file docker/Dockerfile --target runtime --tag zebra:local .
|
docker build --file docker/Dockerfile --target runtime --tag zebra:local .
|
||||||
docker run --detach zebra:local
|
docker run --detach zebra:local
|
||||||
```
|
```
|
||||||
|
|
|
@ -76,7 +76,7 @@ To compile Zebra directly from GitHub, or from a GitHub release source archive:
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/ZcashFoundation/zebra.git
|
git clone https://github.com/ZcashFoundation/zebra.git
|
||||||
cd zebra
|
cd zebra
|
||||||
git checkout v1.8.0
|
git checkout v1.9.0
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Build and Run `zebrad`
|
3. Build and Run `zebrad`
|
||||||
|
@ -89,7 +89,7 @@ target/release/zebrad start
|
||||||
### Compiling from git using cargo install
|
### Compiling from git using cargo install
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.8.0 zebrad
|
cargo install --git https://github.com/ZcashFoundation/zebra --tag v1.9.0 zebrad
|
||||||
```
|
```
|
||||||
|
|
||||||
### Compiling on ARM
|
### Compiling on ARM
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tower-batch-control"
|
name = "tower-batch-control"
|
||||||
version = "0.2.41-beta.14"
|
version = "0.2.41-beta.15"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
|
||||||
description = "Tower middleware for batch request processing"
|
description = "Tower middleware for batch request processing"
|
||||||
# # Legal
|
# # Legal
|
||||||
|
@ -43,10 +43,10 @@ rand = "0.8.5"
|
||||||
|
|
||||||
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
||||||
tokio-test = "0.4.4"
|
tokio-test = "0.4.4"
|
||||||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.14" }
|
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.15" }
|
||||||
tower-test = "0.4.0"
|
tower-test = "0.4.0"
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
[lints.rust]
|
[lints.rust]
|
||||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "tower-fallback"
|
name = "tower-fallback"
|
||||||
version = "0.2.41-beta.14"
|
version = "0.2.41-beta.15"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors."
|
description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors."
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -24,4 +24,4 @@ tracing = "0.1.39"
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-chain"
|
name = "zebra-chain"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Core Zcash data structures"
|
description = "Core Zcash data structures"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -143,7 +143,7 @@ proptest-derive = { version = "0.5.0", optional = true }
|
||||||
rand = { version = "0.8.5", optional = true }
|
rand = { version = "0.8.5", optional = true }
|
||||||
rand_chacha = { version = "0.3.1", optional = true }
|
rand_chacha = { version = "0.3.1", optional = true }
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38", optional = true }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
# Benchmarks
|
# Benchmarks
|
||||||
|
@ -166,7 +166,7 @@ rand_chacha = "0.3.1"
|
||||||
|
|
||||||
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
[[bench]]
|
[[bench]]
|
||||||
name = "block"
|
name = "block"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-consensus"
|
name = "zebra-consensus"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Implementation of Zcash consensus checks"
|
description = "Implementation of Zcash consensus checks"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -63,13 +63,13 @@ orchard.workspace = true
|
||||||
zcash_proofs = { workspace = true, features = ["multicore" ] }
|
zcash_proofs = { workspace = true, features = ["multicore" ] }
|
||||||
wagyu-zcash-parameters = "0.2.0"
|
wagyu-zcash-parameters = "0.2.0"
|
||||||
|
|
||||||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.14" }
|
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.15" }
|
||||||
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.14" }
|
tower-batch-control = { path = "../tower-batch-control/", version = "0.2.41-beta.15" }
|
||||||
|
|
||||||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.38" }
|
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.39" }
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38" }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39" }
|
||||||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38" }
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39" }
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38" }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
# prod feature progress-bar
|
# prod feature progress-bar
|
||||||
howudoin = { version = "0.1.2", optional = true }
|
howudoin = { version = "0.1.2", optional = true }
|
||||||
|
@ -94,6 +94,6 @@ tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
||||||
tracing-error = "0.2.0"
|
tracing-error = "0.2.0"
|
||||||
tracing-subscriber = "0.3.18"
|
tracing-subscriber = "0.3.18"
|
||||||
|
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-grpc"
|
name = "zebra-grpc"
|
||||||
version = "0.1.0-alpha.5"
|
version = "0.1.0-alpha.6"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Zebra gRPC interface"
|
description = "Zebra gRPC interface"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -28,8 +28,8 @@ color-eyre = "0.6.3"
|
||||||
|
|
||||||
zcash_primitives.workspace = true
|
zcash_primitives.workspace = true
|
||||||
|
|
||||||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["shielded-scan"] }
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39", features = ["shielded-scan"] }
|
||||||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.38" }
|
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tonic-build = "0.12.1"
|
tonic-build = "0.12.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-network"
|
name = "zebra-network"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>", "Tower Maintainers <team@tower-rs.com>"]
|
||||||
description = "Networking code for Zebra"
|
description = "Networking code for Zebra"
|
||||||
# # Legal
|
# # Legal
|
||||||
|
@ -83,7 +83,7 @@ howudoin = { version = "0.1.2", optional = true }
|
||||||
proptest = { version = "1.4.0", optional = true }
|
proptest = { version = "1.4.0", optional = true }
|
||||||
proptest-derive = { version = "0.5.0", optional = true }
|
proptest-derive = { version = "0.5.0", optional = true }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["async-error"] }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["async-error"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
proptest = "1.4.0"
|
proptest = "1.4.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-node-services"
|
name = "zebra-node-services"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "The interfaces of some Zebra node services"
|
description = "The interfaces of some Zebra node services"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -37,7 +37,7 @@ rpc-client = [
|
||||||
shielded-scan = ["tokio"]
|
shielded-scan = ["tokio"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.38" }
|
zebra-chain = { path = "../zebra-chain" , version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
# Optional dependencies
|
# Optional dependencies
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-rpc"
|
name = "zebra-rpc"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface"
|
description = "A Zebra JSON Remote Procedure Call (JSON-RPC) interface"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -98,16 +98,16 @@ zcash_address = { workspace = true, optional = true}
|
||||||
# Test-only feature proptest-impl
|
# Test-only feature proptest-impl
|
||||||
proptest = { version = "1.4.0", optional = true }
|
proptest = { version = "1.4.0", optional = true }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = [
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = [
|
||||||
"json-conversion",
|
"json-conversion",
|
||||||
] }
|
] }
|
||||||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38" }
|
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.39" }
|
||||||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38" }
|
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.39" }
|
||||||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = [
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39", features = [
|
||||||
"rpc-client",
|
"rpc-client",
|
||||||
] }
|
] }
|
||||||
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.38" }
|
zebra-script = { path = "../zebra-script", version = "1.0.0-beta.39" }
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38" }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tonic-build = { version = "0.12.1", optional = true }
|
tonic-build = { version = "0.12.1", optional = true }
|
||||||
|
@ -120,17 +120,17 @@ proptest = "1.4.0"
|
||||||
thiserror = "1.0.63"
|
thiserror = "1.0.63"
|
||||||
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = [
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = [
|
||||||
"proptest-impl",
|
"proptest-impl",
|
||||||
] }
|
] }
|
||||||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38", features = [
|
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.39", features = [
|
||||||
"proptest-impl",
|
"proptest-impl",
|
||||||
] }
|
] }
|
||||||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38", features = [
|
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.39", features = [
|
||||||
"proptest-impl",
|
"proptest-impl",
|
||||||
] }
|
] }
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = [
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39", features = [
|
||||||
"proptest-impl",
|
"proptest-impl",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-scan"
|
name = "zebra-scan"
|
||||||
version = "0.1.0-alpha.7"
|
version = "0.1.0-alpha.8"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Shielded transaction scanner for the Zcash blockchain"
|
description = "Shielded transaction scanner for the Zcash blockchain"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -78,11 +78,11 @@ zcash_primitives = { git = "https://github.com/zcash/librustzcash/", commit = "4
|
||||||
zcash_address = { git = "https://github.com/zcash/librustzcash/", commit = "40ca428c6081c61d5a2bf3f2053eb9e18219ca95" }
|
zcash_address = { git = "https://github.com/zcash/librustzcash/", commit = "40ca428c6081c61d5a2bf3f2053eb9e18219ca95" }
|
||||||
sapling-crypto.workspace = true
|
sapling-crypto.workspace = true
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["shielded-scan"] }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["shielded-scan"] }
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["shielded-scan"] }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39", features = ["shielded-scan"] }
|
||||||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["shielded-scan"] }
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39", features = ["shielded-scan"] }
|
||||||
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.5" }
|
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.6" }
|
||||||
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.38" }
|
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std", "serde"] }
|
chrono = { version = "0.4.38", default-features = false, features = ["clock", "std", "serde"] }
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ jubjub = { version = "0.10.0", optional = true }
|
||||||
rand = { version = "0.8.5", optional = true }
|
rand = { version = "0.8.5", optional = true }
|
||||||
zcash_note_encryption = { version = "0.4.0", optional = true }
|
zcash_note_encryption = { version = "0.4.0", optional = true }
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38", optional = true }
|
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39", optional = true }
|
||||||
|
|
||||||
# zebra-scanner binary dependencies
|
# zebra-scanner binary dependencies
|
||||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||||
|
@ -108,7 +108,7 @@ serde_json = "1.0.122"
|
||||||
jsonrpc = { version = "0.18.0", optional = true }
|
jsonrpc = { version = "0.18.0", optional = true }
|
||||||
hex = { version = "0.4.3", optional = true }
|
hex = { version = "0.4.3", optional = true }
|
||||||
|
|
||||||
zebrad = { path = "../zebrad", version = "1.8.0" }
|
zebrad = { path = "../zebrad", version = "1.8.1" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
insta = { version = "1.39.0", features = ["ron", "redactions"] }
|
insta = { version = "1.39.0", features = ["ron", "redactions"] }
|
||||||
|
@ -126,6 +126,6 @@ zcash_note_encryption = "0.4.0"
|
||||||
toml = "0.8.19"
|
toml = "0.8.19"
|
||||||
tonic = "0.12.1"
|
tonic = "0.12.1"
|
||||||
|
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-script"
|
name = "zebra-script"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Zebra script verification wrapping zcashd's zcash_script library"
|
description = "Zebra script verification wrapping zcashd's zcash_script library"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -16,11 +16,11 @@ categories = ["api-bindings", "cryptography::cryptocurrencies"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zcash_script = "0.2.0"
|
zcash_script = "0.2.0"
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38" }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
thiserror = "1.0.63"
|
thiserror = "1.0.63"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-state"
|
name = "zebra-state"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "State contextual verification and storage code for Zebra"
|
description = "State contextual verification and storage code for Zebra"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -77,13 +77,13 @@ tracing = "0.1.39"
|
||||||
elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true }
|
elasticsearch = { version = "8.5.0-alpha.1", default-features = false, features = ["rustls-tls"], optional = true }
|
||||||
serde_json = { version = "1.0.122", package = "serde_json", optional = true }
|
serde_json = { version = "1.0.122", package = "serde_json", optional = true }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["async-error"] }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["async-error"] }
|
||||||
|
|
||||||
# prod feature progress-bar
|
# prod feature progress-bar
|
||||||
howudoin = { version = "0.1.2", optional = true }
|
howudoin = { version = "0.1.2", optional = true }
|
||||||
|
|
||||||
# test feature proptest-impl
|
# test feature proptest-impl
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38", optional = true }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39", optional = true }
|
||||||
proptest = { version = "1.4.0", optional = true }
|
proptest = { version = "1.4.0", optional = true }
|
||||||
proptest-derive = { version = "0.5.0", optional = true }
|
proptest-derive = { version = "0.5.0", optional = true }
|
||||||
|
|
||||||
|
@ -108,5 +108,5 @@ jubjub = "0.10.0"
|
||||||
|
|
||||||
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
tokio = { version = "1.39.2", features = ["full", "tracing", "test-util"] }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.39" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-test"
|
name = "zebra-test"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Test harnesses and test vectors for Zebra"
|
description = "Test harnesses and test vectors for Zebra"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "zebra-utils"
|
name = "zebra-utils"
|
||||||
version = "1.0.0-beta.38"
|
version = "1.0.0-beta.39"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "Developer tools for Zebra maintenance and testing"
|
description = "Developer tools for Zebra maintenance and testing"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -94,11 +94,11 @@ tracing-error = "0.2.0"
|
||||||
tracing-subscriber = "0.3.18"
|
tracing-subscriber = "0.3.18"
|
||||||
thiserror = "1.0.63"
|
thiserror = "1.0.63"
|
||||||
|
|
||||||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38" }
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39" }
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38" }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
# These crates are needed for the block-template-to-proposal binary
|
# These crates are needed for the block-template-to-proposal binary
|
||||||
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.38", optional = true }
|
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.39", optional = true }
|
||||||
|
|
||||||
# These crates are needed for the zebra-checkpoints binary
|
# These crates are needed for the zebra-checkpoints binary
|
||||||
itertools = { version = "0.13.0", optional = true }
|
itertools = { version = "0.13.0", optional = true }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
# Crate metadata
|
# Crate metadata
|
||||||
name = "zebrad"
|
name = "zebrad"
|
||||||
version = "1.8.0"
|
version = "1.9.0"
|
||||||
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
authors = ["Zcash Foundation <zebra@zfnd.org>"]
|
||||||
description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node"
|
description = "The Zcash Foundation's independent, consensus-compatible implementation of a Zcash node"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
@ -157,15 +157,15 @@ test_sync_past_mandatory_checkpoint_mainnet = []
|
||||||
test_sync_past_mandatory_checkpoint_testnet = []
|
test_sync_past_mandatory_checkpoint_testnet = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38" }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39" }
|
||||||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38" }
|
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.39" }
|
||||||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38" }
|
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.39" }
|
||||||
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.38", features = ["rpc-client"] }
|
zebra-node-services = { path = "../zebra-node-services", version = "1.0.0-beta.39", features = ["rpc-client"] }
|
||||||
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.38" }
|
zebra-rpc = { path = "../zebra-rpc", version = "1.0.0-beta.39" }
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38" }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
# Required for crates.io publishing, but it's only used in tests
|
# Required for crates.io publishing, but it's only used in tests
|
||||||
zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.38", optional = true }
|
zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.39", optional = true }
|
||||||
|
|
||||||
abscissa_core = "0.7.0"
|
abscissa_core = "0.7.0"
|
||||||
clap = { version = "4.5.13", features = ["cargo"] }
|
clap = { version = "4.5.13", features = ["cargo"] }
|
||||||
|
@ -279,13 +279,13 @@ proptest-derive = "0.5.0"
|
||||||
# enable span traces and track caller in tests
|
# enable span traces and track caller in tests
|
||||||
color-eyre = { version = "0.6.3" }
|
color-eyre = { version = "0.6.3" }
|
||||||
|
|
||||||
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-chain = { path = "../zebra-chain", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-consensus = { path = "../zebra-consensus", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-network = { path = "../zebra-network", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.38", features = ["proptest-impl"] }
|
zebra-state = { path = "../zebra-state", version = "1.0.0-beta.39", features = ["proptest-impl"] }
|
||||||
|
|
||||||
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.38" }
|
zebra-test = { path = "../zebra-test", version = "1.0.0-beta.39" }
|
||||||
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.5" }
|
zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.6" }
|
||||||
|
|
||||||
# Used by the checkpoint generation tests via the zebra-checkpoints feature
|
# Used by the checkpoint generation tests via the zebra-checkpoints feature
|
||||||
# (the binaries in this crate won't be built unless their features are enabled).
|
# (the binaries in this crate won't be built unless their features are enabled).
|
||||||
|
@ -296,7 +296,7 @@ zebra-grpc = { path = "../zebra-grpc", version = "0.1.0-alpha.5" }
|
||||||
# When `-Z bindeps` is stabilised, enable this binary dependency instead:
|
# When `-Z bindeps` is stabilised, enable this binary dependency instead:
|
||||||
# https://github.com/rust-lang/cargo/issues/9096
|
# https://github.com/rust-lang/cargo/issues/9096
|
||||||
# zebra-utils { path = "../zebra-utils", artifact = "bin:zebra-checkpoints" }
|
# zebra-utils { path = "../zebra-utils", artifact = "bin:zebra-checkpoints" }
|
||||||
zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.38" }
|
zebra-utils = { path = "../zebra-utils", version = "1.0.0-beta.39" }
|
||||||
|
|
||||||
[lints.rust]
|
[lints.rust]
|
||||||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] }
|
||||||
|
|
|
@ -13,7 +13,7 @@ use zebra_chain::{
|
||||||
use crate::application::release_version;
|
use crate::application::release_version;
|
||||||
|
|
||||||
/// The estimated height that this release will be published.
|
/// The estimated height that this release will be published.
|
||||||
pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_562_000;
|
pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_626_500;
|
||||||
|
|
||||||
/// The maximum number of days after `ESTIMATED_RELEASE_HEIGHT` where a Zebra server will run
|
/// The maximum number of days after `ESTIMATED_RELEASE_HEIGHT` where a Zebra server will run
|
||||||
/// without halting.
|
/// without halting.
|
||||||
|
@ -22,8 +22,8 @@ pub const ESTIMATED_RELEASE_HEIGHT: u32 = 2_562_000;
|
||||||
///
|
///
|
||||||
/// - Zebra will exit with a panic if the current tip height is bigger than the `ESTIMATED_RELEASE_HEIGHT`
|
/// - Zebra will exit with a panic if the current tip height is bigger than the `ESTIMATED_RELEASE_HEIGHT`
|
||||||
/// plus this number of days.
|
/// plus this number of days.
|
||||||
/// - Currently set to 16 weeks.
|
/// - Currently set to 14 weeks.
|
||||||
pub const EOS_PANIC_AFTER: u32 = 112;
|
pub const EOS_PANIC_AFTER: u32 = 70;
|
||||||
|
|
||||||
/// The number of days before the end of support where Zebra will display warnings.
|
/// The number of days before the end of support where Zebra will display warnings.
|
||||||
pub const EOS_WARN_AFTER: u32 = EOS_PANIC_AFTER - 14;
|
pub const EOS_WARN_AFTER: u32 = EOS_PANIC_AFTER - 14;
|
||||||
|
|
Loading…
Reference in New Issue