aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-07-02 19:47:25 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-07-02 19:54:12 +0200
commit987efae1fd222320329ff1293afd4986c28df9fd (patch)
tree94858188745e074e5e48a7a46627314d3265fe1a /src/rest.cpp
parent726e28643c565de474b21d57eb4b7d605e4bd3cd (diff)
parente617fe25785bfba30bcb0a8d8af6797b44ba07f5 (diff)
downloadbitcoin-987efae1fd222320329ff1293afd4986c28df9fd.tar.xz
Merge pull request #6133
e617fe2 Fix various warnings (Luke Dashjr)
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 1fce7dfc9c..a1bd893bec 100644
--- a/src/rest.cpp
+++ b/src/rest.cpp
@@ -20,7 +20,7 @@
using namespace std;
-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,