core/state: more memory efficient preimage allocation (#16663)
This commit is contained in:
parent
c57166caa3
commit
81801ccc2b
|
@ -502,7 +502,7 @@ func (self *StateDB) Copy() *StateDB {
|
||||||
refund: self.refund,
|
refund: self.refund,
|
||||||
logs: make(map[common.Hash][]*types.Log, len(self.logs)),
|
logs: make(map[common.Hash][]*types.Log, len(self.logs)),
|
||||||
logSize: self.logSize,
|
logSize: self.logSize,
|
||||||
preimages: make(map[common.Hash][]byte),
|
preimages: make(map[common.Hash][]byte, len(self.preimages)),
|
||||||
journal: newJournal(),
|
journal: newJournal(),
|
||||||
}
|
}
|
||||||
// Copy the dirty states, logs, and preimages
|
// Copy the dirty states, logs, and preimages
|
||||||
|
|
|
@ -276,6 +276,15 @@ func newTestAction(addr common.Address, r *rand.Rand) testAction {
|
||||||
},
|
},
|
||||||
args: make([]int64, 1),
|
args: make([]int64, 1),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "AddPreimage",
|
||||||
|
fn: func(a testAction, s *StateDB) {
|
||||||
|
preimage := []byte{1}
|
||||||
|
hash := common.BytesToHash(preimage)
|
||||||
|
s.AddPreimage(hash, preimage)
|
||||||
|
},
|
||||||
|
args: make([]int64, 1),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
action := actions[r.Intn(len(actions))]
|
action := actions[r.Intn(len(actions))]
|
||||||
var nameargs []string
|
var nameargs []string
|
||||||
|
|
Loading…
Reference in New Issue