diff --git a/config/config.exs b/config/config.exs index 0b361833d4..f73499ed7d 100644 --- a/config/config.exs +++ b/config/config.exs @@ -91,7 +91,8 @@ config :archethic, Archethic.Bootstrap.NetworkInit, genesis_origin_public_keys: [ "010104AB41291F847A601055AEDD1AF24FF76FA970D6441E2DCA3818A8319B004C96B27B8FEB1DA31A044BA0A4800B4353359735719EBB3A05F98393A9CC599C3FAFD6" |> Base.decode16!(case: :mixed) - ] + ], + genesis_network_pool_amount: 34_000_000 config :archethic, Archethic.P2P.BootstrappingSeeds, backup_file: "p2p/seeds", diff --git a/config/dev.exs b/config/dev.exs index 066792c38a..dbb1f432cd 100755 --- a/config/dev.exs +++ b/config/dev.exs @@ -42,8 +42,7 @@ config :archethic, Archethic.Bootstrap.NetworkInit, |> Base.decode16!(case: :mixed), amount: 1_000_000_000_000_000 } - ], - genesis_network_pool_amount: 34_000_000 + ] config :archethic, Archethic.Bootstrap.Sync, out_of_sync_date_threshold: 60 diff --git a/config/prod.exs b/config/prod.exs index 0bafcb8a9a..4f24bc6a3c 100755 --- a/config/prod.exs +++ b/config/prod.exs @@ -71,8 +71,7 @@ config :archethic, Archethic.Bootstrap.NetworkInit, } ) ] - |> Enum.filter(& &1), - genesis_network_pool_amount: 34_000_000 + |> Enum.filter(& &1) config :archethic, Archethic.Bootstrap.Sync, # 15 days diff --git a/config/test.exs b/config/test.exs index 4282da6b34..39cbf0468c 100755 --- a/config/test.exs +++ b/config/test.exs @@ -31,8 +31,7 @@ config :archethic, Archethic.Bootstrap.NetworkInit, |> Base.decode16!(case: :mixed), amount: 1_000_000_000_000_000 } - ], - genesis_network_pool_amount: 34_000_000 + ] config :archethic, Archethic.Contracts.Loader, enabled: false