Implemented counting of usedGas

This commit is contained in:
Maran 2014-06-11 11:40:40 +02:00
parent 97cc762143
commit e090d131c3
1 changed files with 3 additions and 0 deletions

View File

@ -140,6 +140,9 @@ func (sm *StateManager) ApplyTransactions(state *State, block *Block, txs []*Tra
validTxs = append(validTxs, tx)
}
// Update the total gas used for the block (to be mined)
block.GasUsed = totalUsedGas
return receipts, validTxs
}