aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-06-22 07:49:47 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-06-22 07:49:47 +0800
commit9cf7913c61c6f9c1f36a44778a75e6a91a741be4 (patch)
treea68be62cd9460f517d9cbc7b02c861db4012a604 /miner
parent7633dfdc082e8a692ba8089732d353ad31b0a0d6 (diff)
parent398d08a8dd9617954c55219872a5e0eecc1ea41d (diff)
downloadgo-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.tar
go-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.tar.gz
go-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.tar.bz2
go-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.tar.lz
go-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.tar.xz
go-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.tar.zst
go-tangerine-9cf7913c61c6f9c1f36a44778a75e6a91a741be4.zip
Merge pull request #1304 from obscuren/state-renames
core, miner, xeth: renamed gas methods
Diffstat (limited to 'miner')
-rw-r--r--miner/worker.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go
index d339507ca..55c23376c 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -319,7 +319,7 @@ func (self *worker) makeCurrent() {
current.localMinedBlocks = self.current.localMinedBlocks
}
- current.coinbase.SetGasPool(core.CalcGasLimit(parent))
+ current.coinbase.SetGasLimit(core.CalcGasLimit(parent))
self.current = current
}