Skip to content

Commit 15cce49

Browse files
committed
update versions
1 parent bbc5f26 commit 15cce49

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

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

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.21"
3+
version = "0.3.22"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-aggregator/src/database/provider/signed_entity.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ pub trait SignedEntityStorer: Sync + Send {
288288
) -> StdResult<Option<SignedEntityRecord>>;
289289

290290
/// Get last signed entities by signed entity type
291-
async fn get_last_signed_entities(
291+
async fn get_last_signed_entities_by_type(
292292
&self,
293293
signed_entity_type_id: &SignedEntityTypeDiscriminants,
294294
total: usize,
@@ -331,7 +331,7 @@ impl SignedEntityStorer for SignedEntityStoreAdapter {
331331
Ok(signed_entity)
332332
}
333333

334-
async fn get_last_signed_entities(
334+
async fn get_last_signed_entities_by_type(
335335
&self,
336336
signed_entity_type_id: &SignedEntityTypeDiscriminants,
337337
total: usize,

mithril-aggregator/src/signed_entity_service.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ impl SignedEntityService for MithrilSignedEntityService {
144144
) -> StdResult<Vec<SignedEntity<Snapshot>>> {
145145
let signed_entities_records = self
146146
.signed_entity_storer
147-
.get_last_signed_entities(
147+
.get_last_signed_entities_by_type(
148148
&SignedEntityTypeDiscriminants::CardanoImmutableFilesFull,
149149
total,
150150
)
@@ -164,7 +164,7 @@ impl SignedEntityService for MithrilSignedEntityService {
164164
) -> StdResult<Vec<SignedEntity<MithrilStakeDistribution>>> {
165165
let signed_entities_records = self
166166
.signed_entity_storer
167-
.get_last_signed_entities(
167+
.get_last_signed_entities_by_type(
168168
&SignedEntityTypeDiscriminants::MithrilStakeDistribution,
169169
total,
170170
)

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.55"
3+
version = "0.2.56"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

0 commit comments

Comments
 (0)