-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release/0.43] Remove unrecognized properties from testnet configs (#…
…9210) Signed-off-by: Matt Hess <[email protected]>
- Loading branch information
Showing
2 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
# This is exact replica of file 121 on testnet and must match bootstrap.properties exactly. | ||
# Except for network-specific properties (e.g. testnet vs. mainnet), this file is intended to be an | ||
# exact replica of file 121 on testnet and should match bootstrap.properties exactly. | ||
# It will be used by modular code for all the property overrides. | ||
# It does not have to match bootstrap.properties once that file is deprecated by the switch from mono-service to hedera-config. | ||
accounts.maxNumber=20_000_000 | ||
staking.fees.stakingRewardPercentage=10 | ||
staking.maxDailyStakeRewardThPerH=6_849 | ||
staking.maxStakeRewarded=650000000000000000 | ||
staking.rewardBalanceThreshold=8500000000000000 | ||
staking.rewardRate=48630136986000 | ||
tokens.nfts.maxAllowedMints=10_000_000 | ||
#Overrides that differ based on the network | ||
# Overrides that differ based on the network | ||
ledger.id=0x01 | ||
contracts.chainId=296 | ||
bootstrap.genesisPublicKey=e06b22e0966108fa5d63fc6ae53f9824319b891cd4d6050dbf2b242be7e13344 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
# This file needs to exist even though there aren't any properties in it. | ||
# Downstream processes depend on its existence. | ||
# This is an exact replica of file 121 on testnet and must match application.properties exactly. | ||
# It will be used by mono-service for all the property overrides. | ||
# NOTE: Downstream processes depend on this file's existence | ||
# | ||
# Except network-specific overrides (e.g. mainnet vs. testnet), this file is intended to | ||
# be an exact replica of file 121 on testnet and should match application.properties exactly. | ||
# Whenever a configuration change is made to file 121, it should be made here as well. There will be | ||
# some lag time between the property change in file 121 and that same change promoted to the repo and | ||
# to subsequent artifacts, but this span of time should be minimized as much as possible. | ||
# | ||
# This file will be used by mono-service for all the property overrides. | ||
# This file will be deprecated when we deprecate using the mono-service config and fully move to hedera-config. | ||
accounts.maxNumber=20_000_000 | ||
staking.fees.stakingRewardPercentage=10 | ||
staking.maxDailyStakeRewardThPerH=6_849 | ||
staking.maxStakeRewarded=650000000000000000 | ||
staking.rewardBalanceThreshold=8500000000000000 | ||
staking.rewardRate=48630136986000 | ||
tokens.nfts.maxAllowedMints=10_000_000 | ||
#Overrides that differ based on the network | ||
# Overrides that differ based on the network | ||
ledger.id=0x01 | ||
contracts.chainId=296 | ||
bootstrap.genesisPublicKey=e06b22e0966108fa5d63fc6ae53f9824319b891cd4d6050dbf2b242be7e13344 |