diff --git a/binaryVersion b/binaryVersion index 0036e8d..603c40f 100644 --- a/binaryVersion +++ b/binaryVersion @@ -1 +1 @@ -tags/v1.10.6 +tags/v1.10.7 diff --git a/config.toml b/config.toml index ad76945..b6edc79 100644 --- a/config.toml +++ b/config.toml @@ -355,6 +355,19 @@ EpochChangeGracePeriodByEpoch = [ ShardIDProviderType = "BinarySplit" NumShards = 4 +[StateAccessesStorage] + [StateAccessesStorage.Cache] + Name = "StateAccessesStorage" + Capacity = 5000 + Type = "SizeLRU" + SizeInBytes = 10485760 #10MB + [StateAccessesStorage.DB] + FilePath = "StateAccesses" + Type = "LvlDBSerial" + BatchDelaySeconds = 2 + MaxBatchSize = 100 + MaxOpenFiles = 10 + [PeerAccountsTrieStorage] [PeerAccountsTrieStorage.Cache] Name = "PeerAccountsTrieStorage" @@ -696,6 +709,11 @@ EpochChangeGracePeriodByEpoch = [ Enabled = true MaxSizeInBytes = 10485760 #10MB +[StateAccessesCollectorConfig] + TypesToCollect = [] # These can be "READ","WRITE". + SaveToStorage = false + WithAccountChanges = false + [BlockSizeThrottleConfig] MinSizeInBytes = 104857 # 104857 is 10% from 1MB MaxSizeInBytes = 943718 # 943718 is 90% from 1MB diff --git a/enableEpochs.toml b/enableEpochs.toml index 524ee31..7258b4f 100644 --- a/enableEpochs.toml +++ b/enableEpochs.toml @@ -369,6 +369,9 @@ # FixGetBalanceEnableEpoch represents the epoch when get balance opcode fix will be enabled FixGetBalanceEnableEpoch = 4011 + # RelayedTransactionsV1V2DisableEpoch represents the epoch when relayed transactions v1 and v2 are disabled + RelayedTransactionsV1V2DisableEpoch = 4569 + # BLSMultiSignerEnableEpoch represents the activation epoch for different types of BLS multi-signers BLSMultiSignerEnableEpoch = [ { EnableEpoch = 0, Type = "no-KOSK" }, diff --git a/proxyVersion b/proxyVersion index 3c5a55d..02b3803 100644 --- a/proxyVersion +++ b/proxyVersion @@ -1 +1 @@ -tags/v1.3.1 +tags/v1.3.3