mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-13 21:28:36 +00:00
mobile: use EIP155 signer for determining sender
This commit is contained in:
parent
80f7c6c299
commit
eb92522278
1 changed files with 5 additions and 2 deletions
|
|
@ -264,8 +264,11 @@ func (tx *Transaction) GetHash() *Hash { return &Hash{tx.tx.Hash()} }
|
|||
func (tx *Transaction) GetSigHash() *Hash { return &Hash{tx.tx.SigHash(types.HomesteadSigner{})} }
|
||||
func (tx *Transaction) GetCost() *BigInt { return &BigInt{tx.tx.Cost()} }
|
||||
|
||||
func (tx *Transaction) GetFrom() (address *Address, _ error) {
|
||||
from, err := types.Sender(types.HomesteadSigner{}, tx.tx)
|
||||
func (tx *Transaction) GetFrom(chainID *BigInt) (address *Address, _ error) {
|
||||
if chainID == nil { // Null passed from mobile app
|
||||
chainID = new(BigInt)
|
||||
}
|
||||
from, err := types.Sender(types.NewEIP155Signer(chainID.bigint), tx.tx)
|
||||
return &Address{from}, err
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue