You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* main:
chore: Moved EventCreation and TransactionPool classes to event-creator module (#18740)
chore: 12987 improve token and staking unit test coverage (#18531)
chore: remove some obsolete feature flags (#18639)
chore: Make the check for slack user ID case insensitive (#18739)
feat: Handle `BlockAcknowledgements` received from Block Nodes (#18536)
chore: Lazy initialize `SNARK_KEYS` (#18709)
feat: 18593: Need a mechanism to repair key to path mapping from data files at startup (#18625)
chore: remove some obsolete feature flags pt2 (#18641)
fix: 1280 hip 1056 block item with failed contract create result contains a contract (#18728)
chore: set blockPeriod to 2 sec (#18707)
test: Add tests to cover missing test scenarios from TCK (#18667)
feat: Jumbo bytes throttle (#18389)
chore: prepare consensus-utility for event-creator-module (#18695)
chore: Add missing dependencies (#18724)
chore: remove obsolete feature flags pt3 (#18643)
feat: Use existing key to create an account (#18611)
ci: add 'needs' to HAPI Tests (ISS) (#18556)
Copy file name to clipboardExpand all lines: hedera-node/docs/design/services/service-configuration.md
-4
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ For more detailed information on other types of configuration, please refer to t
11
11
12
12
-**AccountsConfig.java**: Provides configuration settings for various account-related properties, including admin roles and treasury accounts.
13
13
-**ApiPermissionConfig.java**: Manages permissions for different API functionalities, specifying which accounts are allowed to execute certain operations.
14
-
-**AutoCreationConfig.java**: Configures settings related to the automatic creation of accounts.
15
14
-**AutoRenew2Config.java**: Contains settings for automatic renewal processes, specifying scan and renewal parameters.
16
15
-**AutoRenewConfig.java**: Defines configurations for the auto-renewal feature, including target types for auto-renewal.
17
16
-**BalancesConfig.java**: Manages the export and handling of account balance information, including export directory and compression settings.
@@ -21,14 +20,12 @@ For more detailed information on other types of configuration, please refer to t
21
20
-**CacheConfig.java**: Manages settings related to caching, including record TTL and the number of warm-up threads.
22
21
-**ConsensusConfig.java**: Configures various consensus-related settings, including message size limits and handling parameters for preceding and following records.
23
22
-**ContractsConfig.java**: Manages configurations for smart contracts, including storage fees, delegate caller permissions, and gas usage limits.
24
-
-**CryptoCreateWithAliasConfig.java**: Enables or disables the feature for creating crypto accounts with an alias.
25
23
-**EntitiesConfig.java**: Manages settings related to entities, including maximum lifetime and token association limits.
26
24
-**ExpiryConfig.java**: Configures expiration-related settings, including throttle resources.
27
25
-**FeesConfig.java**: Manages fee-related configurations, including congestion multipliers and token transfer usage multipliers.
28
26
-**FilesConfig.java**: Configures file-related settings, including file IDs for various system files and maximum file sizes.
29
27
-**GrpcConfig.java**: Manages gRPC configuration settings, including port numbers, message size limits, and node operator port settings.
30
28
-**HederaConfig.java**: Contains general Hedera network settings, including user entity IDs, transaction parameters, and active profiles.
31
-
-**LazyCreationConfig.java**: Enables or disables the lazy creation feature for accounts.
32
29
-**LedgerConfig.java**: Manages ledger-related settings including system accounts, auto-renew periods, and token transfer limits.
33
30
-**NettyConfig.java**: Contains settings for Netty-based gRPC server configurations, including connection limits, retry intervals, and TLS paths.
34
31
-**NetworkAdminConfig.java**: Configures the network administration service, including paths for upgrade artifacts and system file locations.
@@ -41,5 +38,4 @@ For more detailed information on other types of configuration, please refer to t
41
38
-**TopicsConfig.java**: Configures topic-related settings including the maximum number of topics.
42
39
-**TraceabilityConfig.java**: Manages traceability settings including export limits and gas throttle ratios.
43
40
-**TssConfig.java**: Configures the Threshold Signature Scheme (TSS) service, including retry settings and ledger ID enabling.
44
-
-**UtilPrngConfig.java**: Contains settings related to the pseudo-random number generator utility.
45
41
-**VersionConfig.java**: Manages version-related settings including software version numbers and configuration versions.
Copy file name to clipboardExpand all lines: hedera-node/hapi-utils/src/main/java/com/hedera/node/app/hapi/utils/throttles/LeakyBucketDeterministicThrottle.java
+18-17
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,11 @@
12
12
/**
13
13
* Main class responsible for throttling transactions by gasLimit. Keeps track of the instance the
14
14
* last decision was made and calculates the time elapsed since then. Uses a {@link
Copy file name to clipboardExpand all lines: hedera-node/hapi-utils/src/test/java/com/hedera/node/app/hapi/utils/throttles/LeakyBucketDeterministicThrottleTest.java
Copy file name to clipboardExpand all lines: hedera-node/hapi-utils/src/test/java/com/hedera/node/app/hapi/utils/throttles/LeakyBucketThrottleTest.java
0 commit comments