Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-08 | Move external signer out of wallet module | Sjors Provoost | |
This commit moves the ExternalSigner class and RPC methods out of the wallet module. The enumeratesigners RPC can be used without a wallet since #21417. With additional modifications external signers could be used without a wallet in general, e.g. via signrawtransaction. The signerdisplayaddress RPC is ranamed to walletdisplayaddress because it requires wallet context. A future displayaddress RPC call without wallet context could take a descriptor argument. This commit fixes a rpc_help.py failure when configured with --disable-wallet. | |||
2018-07-27 | Update copyright headers to 2018 | DrahtBot | |
2018-03-22 | Fix missing or inconsistent include guards | practicalswift | |
2016-08-25 | Do not shadow global RPC table variable (tableRPC) | Pavel JanÃk | |
2016-03-31 | rpc: Register calls where they are defined | Wladimir J. van der Laan | |
Split out methods to every module, apart from 'help' and 'stop' which are implemented in rpcserver.cpp itself. - This makes it easier to add or remove RPC commands - no longer everything that includes rpcserver.h has to be rebuilt when there's a change there. - Cleans up `rpc/server.h` by getting rid of the huge cluttered list of function definitions. - Removes most of the bitcoin-specific code from rpcserver.cpp and .h. Continues #7307 for the non-wallet. |