Set contract addr for new transactions

This commit is contained in:
obscuren
2014-06-15 00:10:42 +02:00
parent b0e023e432
commit 5871dbaf5a
2 changed files with 6 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ type Transaction struct {
}
func NewContractCreationTx(value, gas, gasPrice *big.Int, script []byte) *Transaction {
return &Transaction{Value: value, Gas: gas, GasPrice: gasPrice, Data: script, contractCreation: true}
return &Transaction{Recipient: ContractAddr, Value: value, Gas: gas, GasPrice: gasPrice, Data: script, contractCreation: true}
}
func NewTransactionMessage(to []byte, value, gas, gasPrice *big.Int, data []byte) *Transaction {