internal/ethapi: return chain id for EIP-155 legacy txs (#25155)

This commit is contained in:
lightclient 2022-06-29 11:58:59 +02:00 committed by GitHub
parent 9ecf8a97a9
commit 3e693e1ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1284,6 +1284,11 @@ func newRPCTransaction(tx *types.Transaction, blockHash common.Hash, blockNumber
result.TransactionIndex = (*hexutil.Uint64)(&index)
}
switch tx.Type() {
case types.LegacyTxType:
// if a legacy transaction has an EIP-155 chain id, include it explicitly
if id := tx.ChainId(); id.Sign() == 0 {
result.ChainID = (*hexutil.Big)(id)
}
case types.AccessListTxType:
al := tx.AccessList()
result.Accesses = &al