diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-28 17:54:41 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-05-30 12:13:31 +0000 |
commit | fcfcc3ac8687a6619d08854a0062ee7d036645fb (patch) | |
tree | d9984af5422abd1e02cd53e25ca067f6f0f99931 /src/daemon/rpc_command_executor.h | |
parent | Merge pull request #5548 (diff) | |
download | monero-fcfcc3ac8687a6619d08854a0062ee7d036645fb.tar.xz |
rpc: in/out peers can now return the setting's value
Diffstat (limited to 'src/daemon/rpc_command_executor.h')
-rw-r--r-- | src/daemon/rpc_command_executor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/rpc_command_executor.h b/src/daemon/rpc_command_executor.h index 3c2686b3f..e7e984b65 100644 --- a/src/daemon/rpc_command_executor.h +++ b/src/daemon/rpc_command_executor.h @@ -123,9 +123,9 @@ public: bool set_limit(int64_t limit_down, int64_t limit_up); - bool out_peers(uint64_t limit); + bool out_peers(bool set, uint32_t limit); - bool in_peers(uint64_t limit); + bool in_peers(bool set, uint32_t limit); bool start_save_graph(); |