ethclient: pass ptr when parsing eth_getTransactionByHash result

This commit is contained in:
Bas van Kervel 2016-12-22 14:45:01 +01:00
parent 6d15d00ac4
commit 021177ca9b
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ func (ec *Client) TransactionByHash(ctx context.Context, hash common.Hash) (tx *
} else if len(raw) == 0 {
return nil, false, ethereum.NotFound
}
if err := json.Unmarshal(raw, tx); err != nil {
if err := json.Unmarshal(raw, &tx); err != nil {
return nil, false, err
} else if _, r, _ := tx.RawSignatureValues(); r == nil {
return nil, false, fmt.Errorf("server returned transaction without signature")