diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-05 17:25:29 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-05 17:25:29 +0800 |
commit | 12643c7c5769ee8ed31b9df4556b6ede1cf2db80 (patch) | |
tree | a13f007f95251bebe8e19ed2bcbc04126c96c424 /ethchain/transaction_pool.go | |
parent | 782910eaa76bb31be4c2bcd0f4505b8085acb57c (diff) | |
parent | 90bb512f420f204f50ba451a4a25682ca8443746 (diff) | |
download | go-tangerine-12643c7c5769ee8ed31b9df4556b6ede1cf2db80.tar.gz go-tangerine-12643c7c5769ee8ed31b9df4556b6ede1cf2db80.tar.zst go-tangerine-12643c7c5769ee8ed31b9df4556b6ede1cf2db80.zip |
Merge branch 'develop' into miner
Diffstat (limited to 'ethchain/transaction_pool.go')
-rw-r--r-- | ethchain/transaction_pool.go | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ethchain/transaction_pool.go b/ethchain/transaction_pool.go index 9acd39e31..a6265afd6 100644 --- a/ethchain/transaction_pool.go +++ b/ethchain/transaction_pool.go @@ -90,7 +90,7 @@ func (pool *TxPool) addTransaction(tx *Transaction) { // Process transaction validates the Tx and processes funds from the // sender to the recipient. -func (pool *TxPool) ProcessTransaction(tx *Transaction, block *Block) (err error) { +func (pool *TxPool) ProcessTransaction(tx *Transaction, state *State, toContract bool) (err error) { defer func() { if r := recover(); r != nil { log.Println(r) @@ -98,7 +98,7 @@ func (pool *TxPool) ProcessTransaction(tx *Transaction, block *Block) (err error } }() // Get the sender - sender := block.state.GetAccount(tx.Sender()) + sender := state.GetAccount(tx.Sender()) // Make sure there's enough in the sender's account. Having insufficient // funds won't invalidate this transaction but simple ignores it. @@ -112,13 +112,15 @@ func (pool *TxPool) ProcessTransaction(tx *Transaction, block *Block) (err error } // Get the receiver - receiver := block.state.GetAccount(tx.Recipient) + receiver := state.GetAccount(tx.Recipient) sender.Nonce += 1 // Send Tx to self if bytes.Compare(tx.Recipient, tx.Sender()) == 0 { // Subtract the fee sender.Amount.Sub(sender.Amount, new(big.Int).Mul(TxFee, TxFeeRat)) + } else if toContract { + sender.Amount.Sub(sender.Amount, new(big.Int).Mul(TxFee, TxFeeRat)) } else { // Subtract the amount from the senders account sender.Amount.Sub(sender.Amount, totAmount) @@ -126,10 +128,10 @@ func (pool *TxPool) ProcessTransaction(tx *Transaction, block *Block) (err error // Add the amount to receivers account which should conclude this transaction receiver.Amount.Add(receiver.Amount, tx.Value) - block.state.UpdateAccount(tx.Recipient, receiver) + state.UpdateAccount(tx.Recipient, receiver) } - block.state.UpdateAccount(tx.Sender(), sender) + state.UpdateAccount(tx.Sender(), sender) log.Printf("[TXPL] Processed Tx %x\n", tx.Hash()) |