diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-02 05:58:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-02 05:58:26 +0800 |
commit | b8124ec79182dbf90b28c8527f2440cea6473f1b (patch) | |
tree | e5c14f90203a9b2a1d37cff28f92918b2ed54398 /miner | |
parent | 219d94c1ddcb1e1e8a3fbfcfdcb545e6271dd5be (diff) | |
download | dexon-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.gz dexon-b8124ec79182dbf90b28c8527f2440cea6473f1b.tar.zst dexon-b8124ec79182dbf90b28c8527f2440cea6473f1b.zip |
Removed old (unused) argument
Diffstat (limited to 'miner')
-rw-r--r-- | miner/worker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go index d89519fb1..2ba3faed8 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -272,7 +272,7 @@ gasLimit: core.AccumulateRewards(self.current.state, self.current.block) - self.current.state.Update(common.Big0) + self.current.state.Update() self.push() } |