mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-27 22:28:21 +00:00
[erigon2.2] Temporary tables for state reconstitution (#512)
* Add temporary table for Plain state reconstitution * Add 2 more temp tables Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local>
This commit is contained in:
parent
86ae204792
commit
e77f25bce6
@ -369,6 +369,10 @@ const (
|
||||
RStorageIdx = "RStorageIdx"
|
||||
RCodeKeys = "RCodeKeys"
|
||||
RCodeIdx = "RCodeIdx"
|
||||
|
||||
PlainStateR = "PlainStateR" // temporary table for PlainState reconstitution
|
||||
CodeR = "CodeR" // temporary table for Code reconstitution
|
||||
PlainContractR = "PlainContractR" // temporary table for PlainContract reconstitution
|
||||
)
|
||||
|
||||
// Keys
|
||||
@ -495,6 +499,10 @@ var ChaindataTables = []string{
|
||||
RStorageIdx,
|
||||
RCodeKeys,
|
||||
RCodeIdx,
|
||||
|
||||
PlainStateR,
|
||||
CodeR,
|
||||
PlainContractR,
|
||||
}
|
||||
|
||||
const (
|
||||
|
Loading…
Reference in New Issue
Block a user