aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2012-04-15 17:00:20 -0400
committerLuke Dashjr <luke-jr+git@utopios.org>2012-04-17 15:08:18 -0400
commit7f34351910ee63685beb169895a3eb5ef266dbb5 (patch)
tree5568600258e2b1b568f7e246d1f493b90a06f1d6 /src/base58.h
parent1b7e5cbcad219e946bb4217741da6933d8302412 (diff)
downloadbitcoin-7f34351910ee63685beb169895a3eb5ef266dbb5.tar.xz
Fix misc. minor sign-comparison warnings
Diffstat (limited to 'src/base58.h')
-rw-r--r--src/base58.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base58.h b/src/base58.h
index 592756ff74..fe1927255c 100644
--- a/src/base58.h
+++ b/src/base58.h
@@ -255,7 +255,7 @@ public:
bool IsValid() const
{
- int nExpectedSize = 20;
+ unsigned int nExpectedSize = 20;
bool fExpectTestNet = false;
switch(nVersion)
{