diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-07-02 19:47:25 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-07-02 19:54:12 +0200 |
| commit | 987efae1fd222320329ff1293afd4986c28df9fd (patch) | |
| tree | 94858188745e074e5e48a7a46627314d3265fe1a /src/rest.cpp | |
| parent | Merge pull request #6247 (diff) | |
| parent | Fix various warnings (diff) | |
| download | discoin-987efae1fd222320329ff1293afd4986c28df9fd.tar.xz discoin-987efae1fd222320329ff1293afd4986c28df9fd.zip | |
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 1fce7dfc9..a1bd893be 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, |