diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-07-02 19:47:25 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-07-02 19:54:12 +0200 |
commit | 987efae1fd222320329ff1293afd4986c28df9fd (patch) | |
tree | 94858188745e074e5e48a7a46627314d3265fe1a /src/rest.cpp | |
parent | 726e28643c565de474b21d57eb4b7d605e4bd3cd (diff) | |
parent | e617fe25785bfba30bcb0a8d8af6797b44ba07f5 (diff) |
Merge pull request #6133
e617fe2 Fix various warnings (Luke Dashjr)
Diffstat (limited to 'src/rest.cpp')
-rw-r--r-- | src/rest.cpp | 2 |
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, |