Removed compiling from the transaction

This commit is contained in:
obscuren 2014-02-24 12:13:42 +01:00
parent d8b5bbd48c
commit d69db6e617

View File

@ -24,12 +24,7 @@ func NewTransaction(to []byte, value *big.Int, data []string) *Transaction {
tx.Nonce = 0 tx.Nonce = 0
// Serialize the data // Serialize the data
tx.Data = make([]string, len(data)) tx.Data = data
for i, val := range data {
instr, _ := ethutil.CompileInstr(val)
tx.Data[i] = string(instr)
}
return &tx return &tx
} }