aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/managed_state.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/state/managed_state.go')
-rw-r--r--core/state/managed_state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/managed_state.go b/core/state/managed_state.go
index 5114f7a7a..aa6650d9b 100644
--- a/core/state/managed_state.go
+++ b/core/state/managed_state.go
@@ -23,7 +23,7 @@ type ManagedState struct {
// ManagedState returns a new managed state with the statedb as it's backing layer
func ManageState(statedb *StateDB) *ManagedState {
return &ManagedState{
- StateDB: statedb,
+ StateDB: statedb.Copy(),
accounts: make(map[string]*account),
}
}