Skip to content

Commit 54e8cf9

Browse files
authored
Merge pull request #921 from input-output-hk/jpraynaud/919-new-stake-distribution-computation
Implement new Stake Distribution computation
2 parents 65e508e + 1c33b46 commit 54e8cf9

File tree

6 files changed

+308
-86
lines changed

6 files changed

+308
-86
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/blog/2022-09-13-stake-distribution-retrieval.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ authors:
55
tags: [stake-distribution, certificate]
66
---
77

8+
**Update**: The Stake Distribution computation is evolving with the release of Cardano node `8.0.0`: the computation now relies on the new `cardano-cli query stake-snapshot --all-stake-pools` command that retrieves the Stake Distribution all at once and that is way faster. Prior versions of the Cardano node `1.35+` are backward compatible and will keep implementing the algorithm detailed below.
9+
810
### The way the Mithril nodes retrieve the Stake Distribution is changing
911

1012
**PR**: `Fix Stake Distribution retrieval` [#499](https://github.com/input-output-hk/mithril/pull/499)

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.3.17"
3+
version = "0.3.18"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-common"
3-
version = "0.2.52"
3+
version = "0.2.53"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

0 commit comments

Comments
 (0)