core/types: document RawSignatureValues (#19695)

ChrisChinchilla-patch-3
Felix Lange 6 years ago committed by Péter Szilágyi
parent c4e8806d9b
commit 50e3795eef
  1. 4
      core/types/transaction.go

@ -252,7 +252,9 @@ func (tx *Transaction) Cost() *big.Int {
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
}

Loading…
Cancel
Save