From eb8f0b85f750b7843bb3909116ea71f85a1988a6 Mon Sep 17 00:00:00 2001
From: obscuren <geffobscura@gmail.com>
Date: Sat, 4 Apr 2015 21:32:24 +0200
Subject: Changed R & S to *big.Int

---
 core/types/transaction.go | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'core')

diff --git a/core/types/transaction.go b/core/types/transaction.go
index 35e8f5ac8..f5aa89a15 100644
--- a/core/types/transaction.go
+++ b/core/types/transaction.go
@@ -24,7 +24,7 @@ type Transaction struct {
 	Amount       *big.Int
 	Payload      []byte
 	V            byte
-	R, S         []byte
+	R, S         *big.Int
 }
 
 func NewContractCreationTx(amount, gasLimit, gasPrice *big.Int, data []byte) *Transaction {
@@ -94,8 +94,8 @@ func (tx *Transaction) To() *common.Address {
 
 func (tx *Transaction) Curve() (v byte, r []byte, s []byte) {
 	v = byte(tx.V)
-	r = common.LeftPadBytes(tx.R, 32)
-	s = common.LeftPadBytes(tx.S, 32)
+	r = common.LeftPadBytes(tx.R.Bytes(), 32)
+	s = common.LeftPadBytes(tx.S.Bytes(), 32)
 	return
 }
 
@@ -118,8 +118,8 @@ func (tx *Transaction) PublicKey() []byte {
 }
 
 func (tx *Transaction) SetSignatureValues(sig []byte) error {
-	tx.R = sig[:32]
-	tx.S = sig[32:64]
+	tx.R = common.Bytes2Big(sig[:32])
+	tx.S = common.Bytes2Big(sig[32:64])
 	tx.V = sig[64] + 27
 	return nil
 }
@@ -137,7 +137,7 @@ func (tx *Transaction) SignECDSA(prv *ecdsa.PrivateKey) error {
 // TODO: remove
 func (tx *Transaction) RlpData() interface{} {
 	data := []interface{}{tx.AccountNonce, tx.Price, tx.GasLimit, tx.Recipient, tx.Amount, tx.Payload}
-	return append(data, tx.V, new(big.Int).SetBytes(tx.R).Bytes(), new(big.Int).SetBytes(tx.S).Bytes())
+	return append(data, tx.V, tx.R.Bytes(), tx.S.Bytes())
 }
 
 func (tx *Transaction) String() string {
-- 
cgit v1.2.3