Commit f292e93e authored by obscuren's avatar obscuren

Merge branch 'develop' of github.com-obscure:ethereum/eth-go into develop

Conflicts:
	ethchain/transaction.go
parents 378815ee 38b4dc2c
......@@ -109,6 +109,11 @@ func (tx *Transaction) Sign(privk []byte) error {
return nil
}
<<<<<<< HEAD
=======
// [ NONCE, GASPRICE, GAS, TO, VALUE, DATA, V, R, S ]
// [ NONCE, GASPRICE, GAS, 0, VALUE, CODE, INIT, V, R, S ]
>>>>>>> 38b4dc2cdf23380532a25240760273dd07b9dff6
func (tx *Transaction) RlpData() interface{} {
data := []interface{}{tx.Nonce, tx.GasPrice, tx.Gas, tx.Recipient, tx.Value, tx.Data}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment