-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[P2P, Runtime] Update P2P & base config (part 2) (#535)
## Description This is another of a series of PRs split out from #500. Here we update the base and P2P configs in preparation for the addition of the libp2p module. ## Issue #347 ## Type of change Please mark the relevant option(s): - [x] New feature, functionality or library - [ ] Bug fix - [ ] Code health or cleanup - [ ] Major breaking change - [ ] Documentation - [ ] Other <!-- add details here if it a different type of change --> ## List of changes - Replace `consensus_port` with `port` in P2P config. - Update default P2P config `port` to from `8080` to `42069`. - Add `use_libp2p` field to base config. - Add `hostname` field to P2P config. - Update state hash test after modifying genesis (updated port numbers). ## Testing - [x] `make develop_test` - [x] [LocalNet](https://github.com/pokt-network/pocket/blob/main/docs/development/README.md) w/ all of the steps outlined in the `README` ## Required Checklist - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have tested my changes using the available tooling - [x] I have updated the corresponding CHANGELOG ### If Applicable Checklist - [ ] I have updated the corresponding README(s); local and/or global - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have added, or updated, [mermaid.js](https://mermaid-js.github.io) diagrams in the corresponding README(s) - [ ] I have added, or updated, documentation and [mermaid.js](https://mermaid-js.github.io) diagrams in `shared/docs/*` if I updated `shared/*`README(s)
- Loading branch information
1 parent
56ea777
commit d09cd8d
Showing
25 changed files
with
107 additions
and
63 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
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
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
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
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
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,18 +1,18 @@ | ||
# docker compose stuff | ||
# override with your own values if the default host port mappings in docker-compose do not suit you | ||
# NODE1_PORT_7081=127.0.0.1:7081 | ||
# NODE1_PORT_8081=127.0.0.1:8081 | ||
# NODE1_PORT_9081=127.0.0.1:9081 | ||
# NODE1_PORT_42070=127.0.0.1:42070 | ||
# NODE1_PORT_50832=127.0.0.1:50832 | ||
# NODE2_PORT_7081=127.0.0.1:7082 | ||
# NODE2_PORT_8081=127.0.0.1:8082 | ||
# NODE2_PORT_9081=127.0.0.1:9082 | ||
# NODE2_PORT_42070=127.0.0.1:42071 | ||
# NODE2_PORT_50832=127.0.0.1:50833 | ||
# NODE3_PORT_7081=127.0.0.1:7083 | ||
# NODE3_PORT_8081=127.0.0.1:8083 | ||
# NODE3_PORT_9081=127.0.0.1:9083 | ||
# NODE3_PORT_42070=127.0.0.1:42072 | ||
# NODE3_PORT_50832=127.0.0.1:50834 | ||
# NODE4_PORT_7081=127.0.0.1:7084 | ||
# NODE4_PORT_8081=127.0.0.1:8084 | ||
# NODE4_PORT_9081=127.0.0.1:9084 | ||
# NODE4_PORT_42070=127.0.0.1:42073 | ||
# NODE4_PORT_50832=127.0.0.1:50835 |
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.