This repository was archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Better command line argument handling #3628 #4597
Closed
Closed
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d7721df
Tryed to add boost::program_options library
demon1999 e5917bd
Adding a boost::program_options library
demon1999 a4cfdec
Adding client mode(default) options
demon1999 f20ff93
Adding client transacting options and client mining options
demon1999 5f23851
fixing todo
demon1999 0febf63
adding clientNetworking options
demon1999 eb4f786
Rewriting command string arguments in ethvm and eth
demon1999 eb1cd28
Finish of rewriting ethvm
demon1999 7ce58ad
Fixing ethvm/main.cpp and ethkey/main.cpp
demon1999 af0d89a
Fixing eth/main.cpp and rip.cpp and peer.cpp
demon1999 691d0e6
Fixing eth/main.cpp
demon1999 bf58fff
Fixing test/tools/libtesteth/Options.cpp
demon1999 c1f13cb
Fixing codestyle
demon1999 5612846
Deliting useless options
demon1999 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixing eth/main.cpp and rip.cpp and peer.cpp
- Loading branch information
commit af0d89af1bc0631cf34e3aa050c0c12a6cda4b2e
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,3 +1,3 @@ | ||
| add_executable(rlp main.cpp) | ||
| target_include_directories(rlp PRIVATE ../utils) | ||
| target_link_libraries(rlp PRIVATE devcrypto devcore) | ||
| target_link_libraries(rlp PRIVATE devcrypto devcore Boost::program_options) |
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these includes needed? Only includes are added to this file and nothing else.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think, I don't need it.