Skip to content

Commit

Permalink
fix: fix (r *Receipt) decodeTyped
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmountaintop committed Jan 15, 2024
1 parent 713fc8c commit 2901d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/types/receipt.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (r *Receipt) decodeTyped(b []byte) error {
return errShortTypedReceipt
}
switch b[0] {
case DynamicFeeTxType, AccessListTxType, BlobTxType:
case DynamicFeeTxType, AccessListTxType, BlobTxType, L1MessageTxType:
var data receiptRLP
err := rlp.DecodeBytes(b[1:], &data)
if err != nil {
Expand Down

0 comments on commit 2901d24

Please sign in to comment.