aboutsummaryrefslogtreecommitdiffstats
path: root/miner/worker.go
diff options
context:
space:
mode:
Diffstat (limited to 'miner/worker.go')
-rw-r--r--miner/worker.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/miner/worker.go b/miner/worker.go
index e5348cef4..89064c3b9 100644
--- a/miner/worker.go
+++ b/miner/worker.go
@@ -169,7 +169,7 @@ func (self *worker) pending() (*types.Block, *state.StateDB) {
self.current.txs,
nil,
self.current.receipts,
- ), self.current.state
+ ), self.current.state.Copy()
}
return self.current.Block, self.current.state.Copy()
}