Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
### BUG FIXES

- Fixed example chain's cmd by adding NoOpEVMOptions to tmpApp in root.go
- Added RPC support for `--legacy` transactions (Non EIP-1559)

### IMPROVEMENTS

Expand Down
3 changes: 3 additions & 0 deletions rpc/backend/tx_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ func (b *Backend) GetTransactionReceipt(hash common.Hash) (map[string]interface{
"blockNumber": hexutil.Uint64(res.Height), //nolint:gosec // G115 // won't exceed uint64
"transactionIndex": hexutil.Uint64(res.EthTxIndex), //nolint:gosec // G115 // no int overflow expected here

// https://github.com/foundry-rs/foundry/issues/7640
"effectiveGasPrice": (*hexutil.Big)(txData.GetGasPrice()),

// sender and receiver (contract or EOA) addreses
"from": from,
"to": txData.GetTo(),
Expand Down
Loading