mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 20:11:21 +00:00
fix const problem
This commit is contained in:
parent
6ca2aacab4
commit
591ffe52d4
@ -48,7 +48,7 @@ const PlainStateBucketOld1 = "PLAIN-CST"
|
||||
//PlainContractCodeBucket -
|
||||
//key - address+incarnation
|
||||
//value - code hash
|
||||
var PlainContractCodeBucket = "PLAIN-contractCode"
|
||||
const PlainContractCodeBucket = "PLAIN-contractCode"
|
||||
|
||||
/*
|
||||
AccountChangeSetBucket and StorageChangeSetBucket - of block N store values of state before block N changed them.
|
||||
@ -74,8 +74,8 @@ StorageChangeSetBucket:
|
||||
key - blockNum_u64 + address + incarnation_u64
|
||||
value - plain_storage_key + value
|
||||
*/
|
||||
var AccountChangeSetBucket = "PLAIN-ACS"
|
||||
var StorageChangeSetBucket = "PLAIN-SCS"
|
||||
const AccountChangeSetBucket = "PLAIN-ACS"
|
||||
const StorageChangeSetBucket = "PLAIN-SCS"
|
||||
|
||||
const (
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user