Fixed incorrect recipient derived

This commit is contained in:
obscuren 2015-03-21 14:46:50 +01:00
parent 06697775d1
commit c28116cb3b
1 changed files with 1 additions and 1 deletions

View File

@ -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
}