Removed old fees

This commit is contained in:
obscuren 2014-06-16 11:13:19 +02:00
parent 15d1f753f7
commit 7b55bcf484
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ func (pool *TxPool) ValidateTransaction(tx *Transaction) error {
//sender := pool.Ethereum.StateManager().procState.GetAccount(tx.Sender())
sender := pool.Ethereum.StateManager().CurrentState().GetAccount(tx.Sender())
totAmount := new(big.Int).Add(tx.Value, new(big.Int).Mul(TxFee, TxFeeRat))
totAmount := new(big.Int).Set(tx.Value)
// Make sure there's enough in the sender's account. Having insufficient
// funds won't invalidate this transaction but simple ignores it.
if sender.Amount.Cmp(totAmount) < 0 {