aboutsummaryrefslogtreecommitdiff
path: root/src/walletinitinterface.h
Commit message (Collapse)AuthorAgeFilesLines
* refactor: add unused ArgsManager to replace gArgsIvan Metlushko2020-07-291-1/+3
|
* scripted-diff: Bump copyright of files changed in 2019MarcoFalke2019-12-301-1/+1
| | | | | | -BEGIN VERIFY SCRIPT- ./contrib/devtools/copyright_header.py update ./ -END VERIFY SCRIPT-
* scripted-diff: Rename InitInterfaces to NodeContextRussell Yanofsky2019-10-281-3/+3
| | | | | | | | | | | | | | | | | | -BEGIN VERIFY SCRIPT- s() { git grep -l "$1" src | xargs sed -i "s/$1/$2/g"; } s 'struct InitInterfaces' 'struct NodeContext' s 'InitInterfaces interfaces' 'NodeContext node' s 'InitInterfaces& interfaces' 'NodeContext\& node' s 'InitInterfaces m_interfaces' 'NodeContext m_context' s 'InitInterfaces\* g_rpc_interfaces' 'NodeContext* g_rpc_node' s 'g_rpc_interfaces = &interfaces' 'g_rpc_node = \&node' s 'g_rpc_interfaces' 'g_rpc_node' s 'm_interfaces' 'm_context' s 'interfaces\.chain' 'node.chain' s '\(AppInitMain\|Shutdown\|Construct\)(interfaces)' '\1(node)' s 'init interfaces' 'chain clients' -END VERIFY SCRIPT-
* refactor: Cleanup walletinitinterface.hHennadii Stepanov2019-09-081-4/+0
| | | | | | | Forward declarations of CScheduler and CRPCTable classes are no longer needed after ea961c3d7256c66146b4976ab1293db4a628c0de commit. Including <string> is no longer needed after 4d4185a4f0e40c033a587871839a47cb3f89ee93 commit.
* Remove direct node->wallet calls in init.cppRussell Yanofsky2018-11-061-18/+3
| | | | | | | | | | | Route calls during node initialization and shutdown that would happen between a node process and wallet processes through the serializable `Chain::Client` interface, rather than `WalletInitInterface` which is now simpler and only deals with early initialization and parameter interaction. This commit mostly does not change behavior. The only change is that the "Wallet disabled!" and "No wallet support compiled in!" messages are now logged earlier during startup.
* Pass chain and client variables where neededRussell Yanofsky2018-11-061-2/+6
| | | | | | | | | This commit does not change behavior. All it does is pass new function parameters. It is easiest to review this change with: git log -p -n1 -U0 --word-diff-regex=.
* [build] remove ENABLE_WALLET ifdef from httprpc.cppJohn Newbery2018-09-101-0/+4
|
* Update copyright headers to 2018DrahtBot2018-07-271-1/+1
|
* Make gArgs aware of the argumentsAndrew Chow2018-05-091-1/+1
| | | | | gArgs knows what the available arguments are and their help. Getting the help message is moved to gArgs and HelpMessage() is removed
* wallet: Make WalletInitInterface members constJoão Barbosa2018-04-131-9/+9
|
* wallet: Make WalletInitInterface and DummyWalletInit privateJoão Barbosa2018-04-051-14/+0
|
* Avoid travis lint-include-guards errorChun Kuan Lee2018-04-021-3/+3
|
* [wallet] Add dummy wallet init classJohn Newbery2018-03-271-0/+14
|
* [wallet] Create wallet init interface.John Newbery2018-03-261-0/+37