Skip to content
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

feat(api): get rid of tx receipt root #3187

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion core/lib/dal/src/models/storage_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,6 @@ impl From<StorageTransactionReceipt> for TransactionReceipt {
logs: vec![],
l2_to_l1_logs: vec![],
status,
root: block_hash,
logs_bloom: Default::default(),
// Even though the Rust SDK recommends us to supply "None" for legacy transactions
// we always supply some number anyway to have the same behavior as most popular RPCs
Expand Down
2 changes: 0 additions & 2 deletions core/lib/types/src/api/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,6 @@ pub struct TransactionReceipt {
pub l2_to_l1_logs: Vec<L2ToL1Log>,
/// Status: either 1 (success) or 0 (failure).
pub status: U64,
/// State root.
pub root: H256,
/// Logs bloom
#[serde(rename = "logsBloom")]
pub logs_bloom: Bloom,
Expand Down
Loading