Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit d6ec3a9

Browse files
committed
Merge branch 'master' into gpestana/13069-nomination-staking-rpc-methods
2 parents 6a54821 + 7732f88 commit d6ec3a9

File tree

12 files changed

+2427
-2169
lines changed

12 files changed

+2427
-2169
lines changed

client/consensus/epochs/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ mod tests {
10391039

10401040
let mut nodes: Vec<_> = epoch_changes.tree().iter().map(|(h, _, _)| h).collect();
10411041
nodes.sort();
1042-
assert_eq!(nodes, vec![b"A", b"B", b"C", b"E", b"F", b"G"]);
1042+
assert_eq!(nodes, vec![b"A", b"B", b"C", b"F", b"G"]);
10431043

10441044
// Finalize block y @ number 35, slot 330
10451045
// This should prune all nodes imported by blocks with a number < 35 that are not
@@ -1050,7 +1050,7 @@ mod tests {
10501050

10511051
let mut nodes: Vec<_> = epoch_changes.tree().iter().map(|(h, _, _)| h).collect();
10521052
nodes.sort();
1053-
assert_eq!(nodes, vec![b"B", b"C", b"F", b"G"]);
1053+
assert_eq!(nodes, vec![b"B", b"C", b"G"]);
10541054
}
10551055

10561056
#[test]

0 commit comments

Comments
 (0)