aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2015-05-13 20:04:39 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2015-06-23 08:39:57 +0000
commite617fe25785bfba30bcb0a8d8af6797b44ba07f5 (patch)
tree3aa208a7b40a0d286d2150b243a63cd7a2cb9364 /src/rest.cpp
parente9d0d252fc57119766f5d7b58715451dd42b1ce6 (diff)
downloadbitcoin-e617fe25785bfba30bcb0a8d8af6797b44ba07f5.tar.xz
Fix various warnings
Found while building on Debian 7
Diffstat (limited to 'src/rest.cpp')
-rw-r--r--src/rest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest.cpp b/src/rest.cpp
index 7c238d506d..5af9d5c790 100644
--- a/src/rest.cpp
+++ b/src/rest.cpp
@@ -19,7 +19,7 @@
using namespace std;
using namespace json_spirit;
-static const int MAX_GETUTXOS_OUTPOINTS = 15; //allow a max of 15 outpoints to be queried at once
+static const size_t MAX_GETUTXOS_OUTPOINTS = 15; //allow a max of 15 outpoints to be queried at once
enum RetFormat {
RF_UNDEF,