mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-02 01:23:45 +00:00
Implemented counting of usedGas
This commit is contained in:
parent
97cc762143
commit
e090d131c3
1 changed files with 3 additions and 0 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue