diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:18:09 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-24 14:18:09 -0500 |
commit | e241a6280da0785d40e7cda1c474206d711534a0 (patch) | |
tree | a73ac8f314cb0e4f562faad823cf992c0de552e3 /src/daemon/rpc_command_executor.h | |
parent | Merge pull request #5576 (diff) | |
parent | rpc: in/out peers can now return the setting's value (diff) | |
download | monero-e241a6280da0785d40e7cda1c474206d711534a0.tar.xz |
Merge pull request #5582
fcfcc3a rpc: in/out peers can now return the setting's value (moneromooo-monero)
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 b85686216..4622609ae 100644 --- a/src/daemon/rpc_command_executor.h +++ b/src/daemon/rpc_command_executor.h @@ -125,9 +125,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 hard_fork_info(uint8_t version); |