Skip to content

Commit

Permalink
Fix bootstrapping seeds conf (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel committed Mar 9, 2022
1 parent 1d04a66 commit 48c4e6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions config/dev.exs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ config :archethic, ArchEthic.P2P.BootstrappingSeeds,
genesis_seeds:
System.get_env(
"ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS",
"127.0.0.1:3002:00001D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp"
"127.0.0.1:3002:00011D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp"
)

config :archethic,
Expand All @@ -74,7 +74,7 @@ config :archethic, ArchEthic.DB.CassandraImpl,
config :archethic, ArchEthic.Governance.Pools,
initial_members: [
technical_council: [
{"00001D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A", 1}
{"00011D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A", 1}
],
ethical_council: [],
foundation: [],
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- ARCHETHIC_STATIC_IP=172.16.1.10
- ARCHETHIC_NETWORKING_PORT_FORWARDING=false
- ARCHETHIC_DB_HOST=scylladb1:9042
- ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS=172.16.1.10:30002:00001D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp
- ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS=172.16.1.10:30002:00011D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp
- ARCHETHIC_NODE_ALLOWED_KEY_ORIGINS=software
- ARCHETHIC_LOGGER_LEVEL=debug
- ARCHETHIC_BEACON_CHAIN_SLOT_TIMER_INTERVAL=*/10 * * * * *
Expand Down Expand Up @@ -80,7 +80,7 @@ services:
- ARCHETHIC_STATIC_IP=172.16.1.11
- ARCHETHIC_NETWORKING_PORT_FORWARDING=false
- ARCHETHIC_DB_HOST=scylladb2:9042
- ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS=172.16.1.10:30002:00001D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp
- ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS=172.16.1.10:30002:00011D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp
- ARCHETHIC_NODE_ALLOWED_KEY_ORIGINS=software
- ARCHETHIC_LOGGER_LEVEL=debug
- ARCHETHIC_BEACON_CHAIN_SLOT_TIMER_INTERVAL=*/10 * * * * *
Expand Down Expand Up @@ -138,7 +138,7 @@ services:
- ARCHETHIC_STATIC_IP=172.16.1.12
- ARCHETHIC_NETWORKING_PORT_FORWARDING=false
- ARCHETHIC_DB_HOST=scylladb3:9042
- ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS=172.16.1.10:30002:00001D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp
- ARCHETHIC_P2P_BOOTSTRAPPING_SEEDS=172.16.1.10:30002:00011D967D71B2E135C84206DDD108B5925A2CD99C8EBC5AB5D8FD2EC9400CE3C98A:tcp
- ARCHETHIC_NODE_ALLOWED_KEY_ORIGINS=software
- ARCHETHIC_LOGGER_LEVEL=debug
- ARCHETHIC_BEACON_CHAIN_SLOT_TIMER_INTERVAL=*/10 * * * * *
Expand Down

0 comments on commit 48c4e6f

Please sign in to comment.