Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion binaryVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tags/v1.10.6
tags/v1.10.7
18 changes: 18 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions enableEpochs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion proxyVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tags/v1.3.1
tags/v1.3.3