File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 1010### BUG FIXES
1111
1212- Fixed example chain's cmd by adding NoOpEVMOptions to tmpApp in root.go
13+ - Added RPC support for ` --legacy ` transactions (Non EIP-1559)
1314
1415### IMPROVEMENTS
1516
Original file line number Diff line number Diff line change @@ -241,6 +241,9 @@ func (b *Backend) GetTransactionReceipt(hash common.Hash) (map[string]interface{
241241 "blockNumber" : hexutil .Uint64 (res .Height ), //nolint:gosec // G115 // won't exceed uint64
242242 "transactionIndex" : hexutil .Uint64 (res .EthTxIndex ), //nolint:gosec // G115 // no int overflow expected here
243243
244+ // https://github.com/foundry-rs/foundry/issues/7640
245+ "effectiveGasPrice" : (* hexutil .Big )(txData .GetGasPrice ()),
246+
244247 // sender and receiver (contract or EOA) addreses
245248 "from" : from ,
246249 "to" : txData .GetTo (),
You can’t perform that action at this time.
0 commit comments