mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix: Change from address in receipt requests as well
This commit is contained in:
@ -89,6 +89,9 @@ pub trait SignedTransaction:
|
|||||||
/// Returns `None` if the transaction's signature is invalid, see also
|
/// Returns `None` if the transaction's signature is invalid, see also
|
||||||
/// `reth_primitives::transaction::recover_signer_unchecked`.
|
/// `reth_primitives::transaction::recover_signer_unchecked`.
|
||||||
fn recover_signer_unchecked(&self) -> Result<Address, RecoveryError> {
|
fn recover_signer_unchecked(&self) -> Result<Address, RecoveryError> {
|
||||||
|
if is_impersonated_tx(self.signature(), self.gas_price()) {
|
||||||
|
return Ok(HL_SYSTEM_TX_FROM_ADDR);
|
||||||
|
}
|
||||||
self.recover_signer_unchecked_with_buf(&mut Vec::new()).map_err(|_| RecoveryError)
|
self.recover_signer_unchecked_with_buf(&mut Vec::new()).map_err(|_| RecoveryError)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user