The v0.80.11
release adds a new pcli
subcommand for detecting potential state desync, related to the UIP-6 bug introduced in v0.80.9
and patched in v0.80.10
. To use it, operators can run:
pcli query chain detect-desync
Be advised that pcli
will use the gRPC endpoint configured in ~/.local/share/pcli/config.toml
by default. This can be overridden with the --grpc-url
argument, for example to query localhost:
pcli --grpc-url http://127.0.0.1:8080 query chain detect-desync
The tool will emit a message such as:
chain_id: penumbra-1
queried height: 2565089
height response: 2565089
Unaffected. No action item. The full node internal state version tracks the block height.
If the tool reports that the endpoint is affected, then the operator should resync from a known-good snapshot.
pcli 0.80.11
Install pcli 0.80.11
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.11/pcli-installer.sh | sh
Download pcli 0.80.11
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.11
Install pclientd 0.80.11
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.11/pclientd-installer.sh | sh
Download pclientd 0.80.11
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.11
Install pd 0.80.11
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.11/pd-installer.sh | sh
Download pd 0.80.11
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
What's Changed
- penumbra(docs): fix typos by @jasmyhigh in #4957
- TransactionView: summary of transaction effects by @TalDerei in #4943
- ci: add cargo-release to deps by @conorsch in #4960
- Fix typos and improve grammar in documentation files by @Dimitrolito in #4961
- chore: update minifront bundled assets by @conorsch in #4965
- pcli: implement
DetectDesync
using ABCI queries by @erwanor in #4967
New Contributors
- @jasmyhigh made their first contribution in #4957
- @Dimitrolito made their first contribution in #4961
Full Changelog: v0.80.10...v0.80.11