-
Notifications
You must be signed in to change notification settings - Fork 0
KOL-5 | feat: Enhance error handling with detailed KolmeError variants #403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
anakinzhed
wants to merge
15
commits into
main
Choose a base branch
from
KOL-5
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
15ae743
KOL-5 | feat: Enhance error handling with detailed KolmeError variants
anakinzhed ff15eec
Merge branch 'main' into KOL-5
anakinzhed 8a2c50e
KOL-5 | KolmeError instead of anyhow I
anakinzhed 2c1f24f
Merge branch 'main' into KOL-5
anakinzhed c787b29
Refactor listener spawning in Solana test
anakinzhed b4e8399
KOL-5 | KolmeError instead of anyhow II
anakinzhed ec68178
Merge branch 'main' into KOL-5
anakinzhed 385102d
KOL-5 | Refactor test_solana_contract_update
anakinzhed 128f0d6
Merge branch 'main' into KOL-5
anakinzhed 26689e8
KOL-5 | Testing revert Testtask
anakinzhed 0a866e9
KOL-5 | KolmeError instead Anyhow III
anakinzhed 6847488
KOL-5 | Refactor error propagation
anakinzhed 1c3b4d5
testing wait for genesis event
anakinzhed a6d1d6e
testing wait for transaction
anakinzhed e2c835b
note to keep in mind
anakinzhed File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,59 @@ | ||
use merkle_map::{MerkleSerialError, Sha256Hash}; | ||
|
||
#[derive(thiserror::Error, Debug)] | ||
#[derive(thiserror::Error, Debug, Clone, serde::Serialize, serde::Deserialize)] | ||
pub enum KolmeStoreError { | ||
#[error(transparent)] | ||
Custom(Box<dyn std::error::Error + Send + Sync>), | ||
#[error(transparent)] | ||
Merkle(#[from] MerkleSerialError), | ||
#[error("Custom error: {0}")] | ||
Custom(String), | ||
|
||
#[error("Merkle error: {0}")] | ||
Merkle(String), | ||
|
||
#[error("Block not found in storage: {height}")] | ||
BlockNotFound { height: u64 }, | ||
|
||
#[error("KolmeStore::delete_block is not supported by this store: {0}")] | ||
UnsupportedDeleteOperation(&'static str), | ||
UnsupportedDeleteOperation(String), | ||
|
||
// kolme#144 - Reports a diverging hash with same height | ||
#[error("Block with height {height} in database with different hash {hash}")] | ||
ConflictingBlockInDb { height: u64, hash: Sha256Hash }, | ||
|
||
// kolme#144 - Reports a double insert (Block already exists with same hash and insert) | ||
#[error("Block already in database: {height}")] | ||
MatchingBlockAlreadyInserted { height: u64 }, | ||
|
||
#[error("Transaction is already present in database: {txhash}")] | ||
TxAlreadyInDb { txhash: Sha256Hash }, | ||
|
||
#[error("get_height_for_tx: invalid height in Fjall store: {details}")] | ||
InvalidHeightInFjall { details: String }, | ||
|
||
#[error("{0}")] | ||
Other(String), | ||
} | ||
|
||
impl KolmeStoreError { | ||
pub fn custom<E: std::error::Error + Send + Sync + 'static>(e: E) -> Self { | ||
Self::Custom(Box::new(e)) | ||
Self::Custom(e.to_string()) | ||
} | ||
} | ||
|
||
impl From<fjall::Error> for KolmeStoreError { | ||
fn from(e: fjall::Error) -> Self { | ||
KolmeStoreError::InvalidHeightInFjall { | ||
details: e.to_string(), | ||
} | ||
} | ||
} | ||
|
||
impl From<anyhow::Error> for KolmeStoreError { | ||
fn from(e: anyhow::Error) -> Self { | ||
KolmeStoreError::Other(format!("Anyhow Error: {e}")) | ||
} | ||
} | ||
|
||
impl From<MerkleSerialError> for KolmeStoreError { | ||
fn from(e: MerkleSerialError) -> Self { | ||
KolmeStoreError::Other(format!("Merkle Serial Error: {e}")) | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.