aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoinrpc.cpp
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-05-09 07:17:30 -0400
committerGregory Maxwell <greg@xiph.org>2012-05-09 07:17:30 -0400
commitd285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85 (patch)
tree69eabd15e84162e930d86bf36cdbd97a72d33f25 /src/bitcoinrpc.cpp
parent2e767410b83a4468bf83be9c39f99cf0325c7739 (diff)
downloadbitcoin-d285c7bf2c44ad93bcd4c6bf661f6fc8bc352c85.tar.xz
Kill warning from unavoidable signed/unsigned comparison in bitcoinrpc.cpp.
Diffstat (limited to 'src/bitcoinrpc.cpp')
-rw-r--r--src/bitcoinrpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index a189b2b2b0..5c78656fcd 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -1525,7 +1525,7 @@ Value listtransactions(const Array& params, bool fHelp)
if (pacentry != 0)
AcentryToJSON(*pacentry, strAccount, ret);
- if (ret.size() >= (nCount+nFrom)) break;
+ if ((int)ret.size() >= (nCount+nFrom)) break;
}
// ret is newest to oldest