Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
eip-4844: desszing blobtx: initial commit (erigontech#7715)
Browse files Browse the repository at this point in the history
  • Loading branch information
racytech authored Jun 14, 2023
1 parent 226763b commit 8b312d5
Show file tree
Hide file tree
Showing 7 changed files with 903 additions and 868 deletions.
8 changes: 4 additions & 4 deletions cmd/rpcdaemon/commands/eth_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ func newRPCTransaction(tx types.Transaction, blockHash common.Hash, blockNumber
case *types.SignedBlobTx:
result.Tip = (*hexutil.Big)(t.GetTip().ToBig())
result.FeeCap = (*hexutil.Big)(t.GetFeeCap().ToBig())
result.MaxFeePerDataGas = (*hexutil.Big)(t.GetMaxFeePerDataGas().ToBig())
result.V = (*hexutil.Big)(t.Signature.GetV().ToBig())
result.R = (*hexutil.Big)(t.Signature.GetR().ToBig())
result.S = (*hexutil.Big)(t.Signature.GetS().ToBig())
result.MaxFeePerDataGas = (*hexutil.Big)(t.MaxFeePerDataGas.ToBig())
// result.V = (*hexutil.Big)(t.Signature.GetV().ToBig())
result.R = (*hexutil.Big)(t.R.ToBig())
result.S = (*hexutil.Big)(t.S.ToBig())
al := t.GetAccessList()
result.Accesses = &al
result.GasPrice = computeGasPrice(tx, blockHash, baseFee)
Expand Down
Loading

0 comments on commit 8b312d5

Please sign in to comment.