mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-03 01:53:48 +00:00
miner: update gas used after tx proc for pending block
This commit is contained in:
parent
1774c49456
commit
cf3aabb9d3
1 changed files with 2 additions and 1 deletions
|
|
@ -270,7 +270,6 @@ func (self *worker) wait() {
|
|||
|
||||
func (self *worker) push() {
|
||||
if atomic.LoadInt32(&self.mining) == 1 {
|
||||
self.current.block.Header().GasUsed = self.current.totalUsedGas
|
||||
self.current.block.SetRoot(self.current.state.Root())
|
||||
|
||||
// push new work to agents
|
||||
|
|
@ -510,6 +509,8 @@ func (self *worker) commitTransactions(transactions types.Transactions) {
|
|||
current.tcount++
|
||||
}
|
||||
}
|
||||
|
||||
self.current.block.Header().GasUsed = self.current.totalUsedGas
|
||||
}
|
||||
|
||||
func (self *worker) commitTransaction(tx *types.Transaction) error {
|
||||
|
|
|
|||
Loading…
Reference in a new issue