-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(katana): improve error handling (#1415)
improve error handling
- Loading branch information
Showing
24 changed files
with
768 additions
and
487 deletions.
There are no files selected for viewing
This file contains 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 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,46 +1,26 @@ | ||
use blockifier::execution::errors::EntryPointExecutionError; | ||
use blockifier::state::errors::StateError; | ||
use blockifier::transaction::errors::TransactionExecutionError; | ||
use katana_primitives::block::BlockIdOrTag; | ||
use katana_primitives::contract::ContractAddress; | ||
use katana_primitives::event::ContinuationTokenError; | ||
use katana_primitives::transaction::TxHash; | ||
use starknet_api::StarknetApiError; | ||
use katana_provider::error::ProviderError; | ||
|
||
#[derive(Debug, thiserror::Error)] | ||
pub enum SequencerError { | ||
#[error("Block {0:?} not found.")] | ||
BlockNotFound(BlockIdOrTag), | ||
#[error("Contract address {0:?} not found.")] | ||
#[error("Contract address {0} not found.")] | ||
ContractNotFound(ContractAddress), | ||
#[error("State update for block {0:?} not found.")] | ||
StateUpdateNotFound(BlockIdOrTag), | ||
#[error("State for block {0:?} not found.")] | ||
StateNotFound(BlockIdOrTag), | ||
#[error("Transaction with {0} hash not found.")] | ||
TxnNotFound(TxHash), | ||
#[error(transparent)] | ||
State(#[from] StateError), | ||
#[error(transparent)] | ||
TransactionExecution(#[from] TransactionExecutionError), | ||
#[error("Error converting {from} into {to}: {message}")] | ||
ConversionError { from: String, to: String, message: String }, | ||
#[error(transparent)] | ||
StarknetApi(#[from] StarknetApiError), | ||
#[error(transparent)] | ||
EntryPointExecution(#[from] EntryPointExecutionError), | ||
#[error("Wait for pending transactions.")] | ||
PendingTransactions, | ||
#[error("Unsupported Transaction")] | ||
UnsupportedTransaction, | ||
#[error(transparent)] | ||
ContinuationToken(#[from] ContinuationTokenError), | ||
#[error("Error serializing state.")] | ||
StateSerialization, | ||
#[error("Required data unavailable")] | ||
DataUnavailable, | ||
#[error("Failed to decode state")] | ||
FailedToDecodeStateDump, | ||
#[error(transparent)] | ||
Other(#[from] anyhow::Error), | ||
Provider(#[from] ProviderError), | ||
} |
This file contains 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 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 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 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.