aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/node.h
Commit message (Collapse)AuthorAgeFilesLines
* Give an error and exit if there are unknown parametersAndrew Chow2018-05-301-2/+2
| | | | | | | | | | | If an unknown option is given via either the command line args or the conf file, throw an error and exit Update tests for ArgsManager knowing args Ignore unknown options in the config file for bitcoin-cli Fix tests and bitcoin-cli to match actual options used
* Make gArgs aware of the argumentsAndrew Chow2018-05-091-3/+2
| | | | | gArgs knows what the available arguments are and their help. Getting the help message is moved to gArgs and HelpMessage() is removed
* -includeconf=<path> support in config handler, for including external ↵Karl-Johan Alm2018-04-261-1/+1
| | | | configuration files
* wallet: Make fee settings non-static membersMarcoFalke2018-04-231-14/+0
|
* node: Removed unused wallet-related methods from the Node interface.Thomas Snider2018-04-181-9/+0
|
* scripted-diff: Avoid `interface` keyword to fix windows gitian buildRussell Yanofsky2018-04-071-0/+259
Rename `interface` to `interfaces` Build failure reported by Chun Kuan Lee <[email protected]> https://github.com/bitcoin/bitcoin/pull/10244#issuecomment-379434756 -BEGIN VERIFY SCRIPT- git mv src/interface src/interfaces ren() { git grep -l "$1" | xargs sed -i "s,$1,$2,g"; } ren interface/ interfaces/ ren interface:: interfaces:: ren BITCOIN_INTERFACE_ BITCOIN_INTERFACES_ ren "namespace interface" "namespace interfaces" -END VERIFY SCRIPT-