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

[R4R] - {0.4.2} [l2geth] bugfix: transaction receipt unmarshal #1236

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
24 changes: 12 additions & 12 deletions l2geth/core/types/gen_receipt_json.go

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

6 changes: 3 additions & 3 deletions l2geth/core/types/receipt.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ type receiptMarshaling struct {
L1GasUsed *hexutil.Big
L1Fee *hexutil.Big
// use eigen DA
DAGasUsed *big.Int
DAGasPrice *big.Int
DAFee *big.Int
DAGasUsed *hexutil.Big
DAGasPrice *hexutil.Big
DAFee *hexutil.Big
}

// receiptRLP is the consensus encoding of a receipt.
Expand Down
Loading