aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2012-04-15 17:00:20 -0400
committerLuke Dashjr <[email protected]>2012-04-17 15:08:18 -0400
commit7f34351910ee63685beb169895a3eb5ef266dbb5 (patch)
tree5568600258e2b1b568f7e246d1f493b90a06f1d6 /src/base58.h
parentCNode's nHeaderStart may be negative, so change its type (PARTIAL) (diff)
downloaddiscoin-7f34351910ee63685beb169895a3eb5ef266dbb5.tar.xz
discoin-7f34351910ee63685beb169895a3eb5ef266dbb5.zip
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 592756ff7..fe1927255 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)
{