Skip to content

Commit

Permalink
fix blobFeeCap type
Browse files Browse the repository at this point in the history
Signed-off-by: Pranay Valson <[email protected]>
  • Loading branch information
noslav committed Mar 26, 2024
1 parent 328697d commit f7b54dc
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions internal/types/eth.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
package types

import (
"math/big"

"github.com/ethereum/go-ethereum/crypto/kzg4844"
"github.com/ubiq/go-ubiq/common"
)
Expand Down Expand Up @@ -88,7 +86,7 @@ type Transaction struct {
V *BigInt `json:"v" rlp:"nilString"`
R *BigInt `json:"r" rlp:"nilString"`
S *BigInt `json:"s" rlp:"nilString"`
BlobFeeCap *big.Int `json:"blobFeeCap" rlp:"optional"`
BlobFeeCap *BigInt `json:"blobFeeCap" rlp:"optional"`
BlobHashes []common.Hash `json:"blobHashes" rlp:"optional"`
BlobGas uint64 `json:"blobGas" rlp:"optional"`
BlobTxSidecar *BlobTxSidecar `json:"blobTxSidecar" rlp:"optional"`
Expand Down

0 comments on commit f7b54dc

Please sign in to comment.