Skip to content

Commit 0d75602

Browse files
authored
Merge pull request #1227 from input-output-hk/damien/798/implement-anyhow-for-common-store
Implement anyhow for common store
2 parents 9c1bede + 0986b90 commit 0d75602

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

mithril-common/src/store/adapter/store_adapter.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,9 @@ pub enum AdapterError {
2121
#[error("problem parsing the IO stream: {0:?}")]
2222
ParsingDataError(StdError),
2323

24-
/// Error raised if a writting operation fails.
25-
#[error("problem writing on the adapter: {0:?}")]
26-
MutationError(StdError),
27-
2824
/// Error while querying the subsystem.
2925
#[error("problem when querying the adapter: {0:?}")]
3026
QueryError(StdError),
31-
32-
/// Type conversion cannot be performed by this adapter.
33-
#[error("type conversion error, this adapter does not know how to handle this: {0:?}")]
34-
TypeError(StdError),
3527
}
3628

3729
/// Represent a way to store Key/Value pair data.

0 commit comments

Comments
 (0)