diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-23 19:15:45 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-11-23 19:15:45 +0000 |
commit | 009eed17f1a469ae0c43170b8ecf302564548d19 (patch) | |
tree | f2e194c4dc0182b698c5bb07930555a548651322 /src/rpc | |
parent | Merge pull request #2783 (diff) | |
download | monero-009eed17f1a469ae0c43170b8ecf302564548d19.tar.xz |
rpc: increase the max number of outs one can request
It's getting hit too easily
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 6e7fb7e8e..64a9c86d5 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -49,7 +49,7 @@ using namespace epee; #define MONERO_DEFAULT_LOG_CATEGORY "daemon.rpc" #define MAX_RESTRICTED_FAKE_OUTS_COUNT 40 -#define MAX_RESTRICTED_GLOBAL_FAKE_OUTS_COUNT 500 +#define MAX_RESTRICTED_GLOBAL_FAKE_OUTS_COUNT 5000 namespace { |