mirror of https://github.com/status-im/op-geth.git
Fixed incorrect recipient derived
This commit is contained in:
parent
06697775d1
commit
c28116cb3b
|
@ -80,7 +80,7 @@ func (self *Transaction) From() (common.Address, error) {
|
|||
return common.Address{}, errors.New("invalid public key")
|
||||
}
|
||||
var addr common.Address
|
||||
copy(addr[:], crypto.Sha3(pubkey[1:]))
|
||||
copy(addr[:], crypto.Sha3(pubkey[1:])[12:])
|
||||
return addr, nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue