core/types: document RawSignatureValues

This commit is contained in:
Felix Lange 2019-06-11 15:17:52 +02:00
parent c0a034ec89
commit 616f96e512

View file

@ -252,7 +252,9 @@ func (tx *Transaction) Cost() *big.Int {
return total return total
} }
func (tx *Transaction) RawSignatureValues() (*big.Int, *big.Int, *big.Int) { // RawSignatureValues returns the V, R, S signature values of the transaction.
// The return values should not be modified by the caller.
func (tx *Transaction) RawSignatureValues() (v, r, s *big.Int) {
return tx.data.V, tx.data.R, tx.data.S return tx.data.V, tx.data.R, tx.data.S
} }