Add enterprise/private profile (#6448)

Signed-off-by: Gabriel-Trintinalia <gabriel.trintinalia@consensys.net>
pull/6551/head
Gabriel-Trintinalia 10 months ago committed by GitHub
parent cf7fec697d
commit 23aa99df3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      besu/src/main/java/org/hyperledger/besu/cli/config/ProfileName.java
  2. 8
      config/src/main/resources/profiles/enterprise-private.toml

@ -22,7 +22,11 @@ public enum ProfileName {
STAKER("profiles/staker.toml"),
/** The 'MINIMALIST_STAKER' profile */
MINIMALIST_STAKER("profiles/minimalist-staker.toml"),
/** The 'DEV' profile. Corresponds to the 'profiles/dev.toml' configuration file. */
/** The 'ENTERPRISE' profile */
ENTERPRISE("profiles/enterprise-private.toml"),
/** The 'PRIVATE' profile */
PRIVATE("profiles/enterprise-private.toml"),
/** The 'DEV' profile. */
DEV("profiles/dev.toml");
private final String configFile;

@ -0,0 +1,8 @@
sync-mode="FAST"
sync-min-peers=1
remote-connections-limit-enabled=false
tx-pool="SEQUENCED"
tx-pool-no-local-priority=true
tx-pool-limit-by-account-percentage=0.15
rpc-http-max-active-connections=300
min-gas-price=0
Loading…
Cancel
Save