Skip to content

Commit

Permalink
wip: update progress
Browse files Browse the repository at this point in the history
  • Loading branch information
suchapalaver committed Oct 28, 2024
1 parent 05fec21 commit 2449fcc
Show file tree
Hide file tree
Showing 13 changed files with 430 additions and 289 deletions.
98 changes: 32 additions & 66 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/firehose-protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ path = "src/lib.rs"
alloy-consensus.workspace = true
alloy-eip2930.workspace = true
alloy-primitives.workspace = true
alloy-rlp.workspace = true
ethportal-api.workspace = true
primitive-types.workspace = true
prost.workspace = true
prost-wkt.workspace = true
prost-wkt-types.workspace = true
reth-primitives.workspace = true
reth-trie-common.workspace = true
serde.workspace = true
thiserror.workspace = true
tonic.workspace = true
Expand Down
9 changes: 9 additions & 0 deletions crates/firehose-protos/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,15 @@ pub enum ProtosError {
#[error("Invalid trace signature {0:?} component: {1}")]
InvalidTraceSignature(EcdsaComponent, String),

#[error("Invalid transaction receipt logs bloom: {0}")]
InvalidTransactionReceiptLogsBloom(String),

#[error("KzgCommitmentInvalid")]
KzgCommitmentInvalid,

#[error("MissingBlockHeader")]
MissingBlockHeader,

#[error("Null attestation data")]
NullAttestationData,

Expand Down Expand Up @@ -70,6 +76,9 @@ pub enum ProtosError {
#[error("Transaction missing call")]
TransactionMissingCall,

#[error("Transaction trace missing receipt")]
TransactionTraceMissingReceipt,

#[error("TxTypeConversionError")]
TxTypeConversion,
}
Loading

0 comments on commit 2449fcc

Please sign in to comment.