diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-10-25 13:38:21 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-25 13:38:21 -0500 |
| commit | 960c2158010d30a375207310a36a7a942b9285d2 (patch) | |
| tree | 46d25ec0db661fd62fd1a683dea3b1ecbf620089 /src/daemon/command_server.cpp | |
| parent | cc46f05f1f21da4061588ffd317afa13aa379b91 (diff) | |
| parent | ffa46026b5360decf5343b85fb267d026f41e760 (diff) | |
| download | monzero-core-960c2158010d30a375207310a36a7a942b9285d2.tar.gz monzero-core-960c2158010d30a375207310a36a7a942b9285d2.tar.xz monzero-core-960c2158010d30a375207310a36a7a942b9285d2.zip | |
Merge pull request #5357
b3a9a4d add a quick early out to get_blocks.bin when up to date (moneromooo-monero)
2899379 daemon, wallet: new pay for RPC use system (moneromooo-monero)
ffa4602 simplewallet: add public_nodes command (moneromooo-monero)
Diffstat (limited to 'src/daemon/command_server.cpp')
| -rw-r--r-- | src/daemon/command_server.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/daemon/command_server.cpp b/src/daemon/command_server.cpp index e44ce9137..b00e253c7 100644 --- a/src/daemon/command_server.cpp +++ b/src/daemon/command_server.cpp @@ -296,6 +296,11 @@ t_command_server::t_command_server( , "Remove blocks from end of blockchain" ); m_command_lookup.set_handler( + "rpc_payments" + , std::bind(&t_command_parser_executor::rpc_payments, &m_parser, p::_1) + , "Print information about RPC payments." + ); + m_command_lookup.set_handler( "version" , std::bind(&t_command_parser_executor::version, &m_parser, p::_1) , "Print version information." |
