diff --git a/core/types/transaction.go b/core/types/transaction.go
index ba3d5de91de172f7ca0be3913f104fd85de64541..3eb8df0ac7c7b2095316bb98182c7928219944b4 100644
--- a/core/types/transaction.go
+++ b/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
 }