Skip to content

Commit

Permalink
[l2geth]bugfix: transaction receipt unmarshal (#1235)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tri-stone authored Jul 3, 2023
1 parent b991dd9 commit bb394d0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
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

0 comments on commit bb394d0

Please sign in to comment.